We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f68e7e5 + bfd84b6 commit 1cac5a1Copy full SHA for 1cac5a1
init.lua
@@ -475,7 +475,7 @@ cmp.setup {
475
['<Tab>'] = cmp.mapping(function(fallback)
476
if cmp.visible() then
477
cmp.select_next_item()
478
- elseif luasnip.expand_or_jumpable() then
+ elseif luasnip.expand_or_locally_jumpable() then
479
luasnip.expand_or_jump()
480
else
481
fallback()
@@ -484,7 +484,7 @@ cmp.setup {
484
['<S-Tab>'] = cmp.mapping(function(fallback)
485
486
cmp.select_prev_item()
487
- elseif luasnip.jumpable(-1) then
+ elseif luasnip.locally_jumpable(-1) then
488
luasnip.jump(-1)
489
490
0 commit comments