diff options
| author | Abouzar Parvan <[email protected]> | 2022-04-15 05:34:24 +0430 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-04-15 05:34:24 +0430 | 
| commit | bc90e8174fd1760d87b5cd68d8fabb9669ab5fb9 (patch) | |
| tree | e0223a3b32e827924ef66629df179a3797d3438f | |
| parent | 2b765ea8f82456823d87633056f7edb3801745a8 (diff) | |
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), | 
