diff options
author | Chase Colman <[email protected]> | 2021-10-17 14:37:32 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-17 14:37:32 +0800 |
commit | ee90075ef62ac122f8add05857f35e0e56d493d2 (patch) | |
tree | a81764b8a255188f815b470f6d1616131f7ba5a5 /lua/lvim/core/cmp.lua | |
parent | 3c5a6d06b966eedac74a01d0fcc3a6a06631128e (diff) | |
parent | 92c07ed89f278a89a1dbf0437162f3a95661dd0e (diff) |
Merge pull request #1790 from xeluxee/fix-c-j-c-k-keybindings
fix(cmp): fix <C-j> and <C-k> keybindings not working
Diffstat (limited to 'lua/lvim/core/cmp.lua')
-rw-r--r-- | lua/lvim/core/cmp.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/lvim/core/cmp.lua b/lua/lvim/core/cmp.lua index ad06a360..b1cb1431 100644 --- a/lua/lvim/core/cmp.lua +++ b/lua/lvim/core/cmp.lua @@ -204,6 +204,8 @@ M.config = function() { name = "crates" }, }, mapping = { + ["<C-k>"] = cmp.mapping.select_prev_item(), + ["<C-j>"] = cmp.mapping.select_next_item(), ["<C-d>"] = cmp.mapping.scroll_docs(-4), ["<C-f>"] = cmp.mapping.scroll_docs(4), -- TODO: potentially fix emmet nonsense |