diff options
-rw-r--r-- | fnl/nvrc/packs/cmp.fnl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fnl/nvrc/packs/cmp.fnl b/fnl/nvrc/packs/cmp.fnl index ef3d5eb..b49a1c8 100644 --- a/fnl/nvrc/packs/cmp.fnl +++ b/fnl/nvrc/packs/cmp.fnl @@ -62,13 +62,11 @@ :<Tab> (mapping {:i (fn [fallback] (if (visible) (select_next_item) (luasnip.expand_or_jumpable) (luasnip.expand_or_jump) - (fallback))) - :c (mapping.select_prev_item {:select true})}) + (fallback)))}) :<S-Tab> (mapping {:i (fn [fallback] (if (visible) (select_next_item) (luasnip.jumpable -1) (luasnip.jump -1) - (fallback))) - :c (mapping.select_prev_item {:select true})})} + (fallback)))})} :sources [{:name :nvim_lsp} {:name :nvim_lsp_signature_help}] :sorting {:comparators [compare.offset |