diff options
author | Abouzar Parvan <[email protected]> | 2022-04-15 05:36:02 +0430 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-15 05:36:02 +0430 |
commit | 2567d8612e2f31c024038e54b3dfa4825ff539d6 (patch) | |
tree | 5bfb486cf45fb2febdd3931363a2b0e2e2ecaf63 | |
parent | 22944e3111db9c31b22b78e6882e40a62c567f7f (diff) |
fix(cmp): update nvim-cmp to the latest version (#2467) (#2469)
* fix(cmp): update nvim-cmp to the latest version (#2467)
* fix(cmp): bring back default keybindings (#2470)
-rw-r--r-- | lua/lvim/core/cmp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/core/cmp.lua b/lua/lvim/core/cmp.lua index 8fb18c5f..4eff9883 100644 --- a/lua/lvim/core/cmp.lua +++ b/lua/lvim/core/cmp.lua @@ -248,7 +248,7 @@ M.config = function() { name = "treesitter" }, { name = "crates" }, }, - mapping = { + mapping = cmp.mapping.preset.insert { ["<C-k>"] = cmp.mapping.select_prev_item(), ["<C-j>"] = cmp.mapping.select_next_item(), ["<C-d>"] = cmp.mapping.scroll_docs(-4), |