mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-14 16:42:30 -05:00
Use ctrl+delete to abort nvim-cmp popups so it doesn't make deleting characters forward annoying in input mode
This commit is contained in:
parent
0013dfea9a
commit
d865a80795
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ if (vim.g.enablecompletion == 1) then
|
||||||
end
|
end
|
||||||
end, { "i", "s" }),
|
end, { "i", "s" }),
|
||||||
|
|
||||||
["<Del>"] = cmp.mapping.abort(),
|
["<C-Del>"] = cmp.mapping.abort(),
|
||||||
["<CR>"] = cmp.mapping.confirm({ select = false }),
|
["<CR>"] = cmp.mapping.confirm({ select = false }),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue