mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Use Delete instead of Leader to cancel the nvim-cmp popup
This commit is contained in:
parent
75b1337274
commit
44075669be
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" }),
|
||||||
|
|
||||||
["<Leader>"] = cmp.mapping.abort(),
|
["<Del>"] = cmp.mapping.abort(),
|
||||||
["<CR>"] = cmp.mapping.confirm({ select = false }),
|
["<CR>"] = cmp.mapping.confirm({ select = false }),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue