[nvim] feat: only jump inside the snippet

This commit is contained in:
David JULIEN 2022-04-29 00:18:53 +02:00
parent 4669337540
commit 6581d9af42
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ cmp.setup {
["<Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_next_item()
elseif luasnip.expand_or_jumpable() then
elseif luasnip.expand_or_locally_jumpable() then
luasnip.expand_or_jump()
elseif has_words_before() then
cmp.complete()