diff options
author | xeluxee <[email protected]> | 2021-10-16 20:19:50 +0200 |
---|---|---|
committer | xeluxee <[email protected]> | 2021-10-16 20:36:21 +0200 |
commit | 92c07ed89f278a89a1dbf0437162f3a95661dd0e (patch) | |
tree | a81764b8a255188f815b470f6d1616131f7ba5a5 | |
parent | 3c5a6d06b966eedac74a01d0fcc3a6a06631128e (diff) |
fix(cmp): fix <C-j> and <C-k> keybindings not working
-rw-r--r-- | lua/lvim/core/cmp.lua | 2 | ||||
-rw-r--r-- | lua/lvim/keymappings.lua | 4 |
2 files changed, 2 insertions, 4 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 diff --git a/lua/lvim/keymappings.lua b/lua/lvim/keymappings.lua index 68a49393..be8ebe96 100644 --- a/lua/lvim/keymappings.lua +++ b/lua/lvim/keymappings.lua @@ -81,10 +81,6 @@ function M.config() ["<A-Down>"] = "<C-\\><C-N><C-w>j", ["<A-Left>"] = "<C-\\><C-N><C-w>h", ["<A-Right>"] = "<C-\\><C-N><C-w>l", - -- navigate tab completion with <c-j> and <c-k> - -- runs conditionally - ["<C-j>"] = { 'pumvisible() ? "\\<down>" : "\\<C-j>"', { expr = true, noremap = true } }, - ["<C-k>"] = { 'pumvisible() ? "\\<up>" : "\\<C-k>"', { expr = true, noremap = true } }, }, ---@usage change or add keymappings for normal mode |