-
Is there a way to disable In particular it's quite annoying to me to not be able to use history navigation (up / down arrows) without dismissing the completion -- the behavior I want is that up/down do what they normally do in command mode (scroll backwards through history), and that that change only if I hit tab to complete something. Anyone know if that's configurable at the minute? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
i want something similar too, in my case i want the cmdline completion to not show unless i press tab. |
Beta Was this translation helpful? Give feedback.
-
@Julian if you want to disable the cmdline itself then opts = {
sources = {
cmdline = {
enabled = false,
},
},
} |
Beta Was this translation helpful? Give feedback.
-
I found this recipe in the docs: Don't show completion menu automatically in cmdline mode completion = {
menu = { auto_show = function(ctx) return ctx.mode ~= 'cmdline' end }
} |
Beta Was this translation helpful? Give feedback.
I found this recipe in the docs: Don't show completion menu automatically in cmdline mode