update behavior

This commit is contained in:
fiplox 2023-01-22 17:46:35 +01:00
parent 3bb590f82f
commit 6d4aabf5a7

View File

@ -124,10 +124,10 @@ function M.config()
mapping = {
['<TAB>'] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_next_item()
-- cmp.complete()
cmp.select_next_item { behavior = cmp.SelectBehavior.Insert }
else
cmp.complete()
cmp.select_next_item { behavior = cmp.SelectBehavior.Insert }
end
end, { 'i', 's', 'c' }),
['<S-TAB>'] = cmp.mapping(function(fallback)
@ -141,7 +141,7 @@ function M.config()
i = cmp.mapping.confirm { behavior = cmp.ConfirmBehavior.Replace, select = false },
c = function(fallback)
if cmp.visible() then
cmp.confirm { behavior = cmp.ConfirmBehavior.Replace, select = false }
cmp.confirm { behavior = cmp.ConfirmBehavior.Insert, select = true }
else
fallback()
end