mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
enc:change keymapping codeium cycle
This commit is contained in:
parent
e6e7acc2a0
commit
0ef35939de
1 changed files with 2 additions and 2 deletions
|
@ -17,10 +17,10 @@ return {
|
|||
vim.keymap.set("i", "<C-g>", function()
|
||||
return vim.fn["codeium#Accept"]()
|
||||
end, { expr = true, silent = true })
|
||||
vim.keymap.set("i", "<c-;>", function()
|
||||
vim.keymap.set("i", "<c-Up>", function()
|
||||
return vim.fn["codeium#CycleCompletions"](1)
|
||||
end, { expr = true, silent = true })
|
||||
vim.keymap.set("i", "<c-,>", function()
|
||||
vim.keymap.set("i", "<c-Down>", function()
|
||||
return vim.fn["codeium#CycleCompletions"](-1)
|
||||
end, { expr = true, silent = true })
|
||||
vim.keymap.set("i", "<c-x>", function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue