Conflict TAB-key for accepting suggestions (with LUA-snippet) #274
Replies: 3 comments
-
I have achieved that C-y accepts the codeium suggesion without conflict with luasnip (which works under TAB). But problem - the codeum accepts suggestions only one character at a time when i press Ctrl+y. One letter at a time. How can I accept the whole sentence, the whole text offered? CMP.lua
|
Beta Was this translation helpful? Give feedback.
-
Also I tried to follow documentation.
but when I try to use "C-y" I see the error: Look's like the Accept method from documentation doesn't work. |
Beta Was this translation helpful? Give feedback.
-
vim.keymap.set("i", "cs", function()
end, { expr = true, silent = true }) |
Beta Was this translation helpful? Give feedback.
-
Lua-snippet and codeium have the same key for accepting suggestions (TAB). And it creates a conflict.
I wanted to add a mappings for accept codeium suggestions. (C-y for example), but can't do it.
Beta Was this translation helpful? Give feedback.
All reactions