fix cmp use correct function

This commit is contained in:
max397574 2021-10-08 15:30:15 +02:00 committed by siduck76
parent 8a426b9e62
commit 1af5510d03
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ cmp.setup {
end,
["<S-Tab>"] = function(fallback)
if cmp.visible() then
cmp.select_next_item()
cmp.select_prev_item()
elseif require("luasnip").jumpable(-1) then
vim.fn.feedkeys(vim.api.nvim_replace_termcodes("<Plug>luasnip-jump-prev", true, true, true), "")
else