Replies: 1 comment
-
Yes, you need to explictly hide the completion menu: completion = {
menu = {
auto_show = false,
-- or if you want to keep it showing in other modes (eg. cmdline, terminal)
-- auto_show = function(ctx) return ctx.mode ~= 'default' end,
}
} You probably want it to show up on keystroke. For instance, the following keymap will do it: keymap = {
['<C-e>'] = { 'show', 'hide', 'fallback' },
} See also the related doc: https://cmp.saghen.dev/configuration/completion.html#menu |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
hi ! Sorry if my question is confusing. So i take a screenshot for what i mean
Let said i type cl -> ghost text + menu activated -> show console.log() . With sometime made missunderstood.
What i ask is possible to make blink.cmp ghost text work like autosuggestion function on zsh shell?
When ghost text activated, hide input text, show only ghost-text. and menu
Beta Was this translation helpful? Give feedback.
All reactions