-
How can I have the default tab behavior in cmdline? I would frequently update my packages by typing |
Beta Was this translation helpful? Give feedback.
Answered by
Quitlox
Dec 29, 2024
Replies: 1 comment
-
You can change the behaviour for the cmdline mode using the require("blink-cmp").setup({
keymap = {
cmdline = {
["<Tab>"] = { "select_and_accept", "fallback" },
},
},
}) This can all be found in the documentation: https://cmp.saghen.dev/configuration/keymap.html |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Saghen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can change the behaviour for the cmdline mode using the
keymap.cmdline
option. It sounds like you're looking forselect_and_accept
.This can all be found in the documentation: https://cmp.saghen.dev/configuration/keymap.html