add local jumping to shift tab
This commit is contained in:
parent
1c02cec98b
commit
2844f61d96
1 changed files with 1 additions and 1 deletions
2
init.lua
2
init.lua
|
@ -478,7 +478,7 @@ cmp.setup {
|
|||
['<S-Tab>'] = cmp.mapping(function(fallback)
|
||||
if cmp.visible() then
|
||||
cmp.select_prev_item()
|
||||
elseif luasnip.jumpable(-1) then
|
||||
elseif luasnip.locally_jumpable(-1) then
|
||||
luasnip.jump(-1)
|
||||
else
|
||||
fallback()
|
||||
|
|
Loading…
Reference in a new issue