diff options
author | Gaurav Bhatnagar <11798509+mech-a@users.noreply.github.com> | 2023-05-07 16:38:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-07 16:38:44 -0700 |
commit | 2844f61d968501b531758e8a301a53a77b2fb69e (patch) | |
tree | 6a30ed3baf70757ed8daec9e15f925071d0c3f69 /init.lua | |
parent | 1c02cec98b9192d8c7e990b8243e3ae007325bad (diff) |
add local jumping to shift tab
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |