fix cmp keymapping

This commit is contained in:
2025-01-13 21:12:00 -05:00
parent 5162860a70
commit b986fad055
+7
View File
@@ -1397,6 +1397,13 @@ M.overrides = {
desc = 'Surround', desc = 'Surround',
mode = { 'n', 'x' }, mode = { 'n', 'x' },
}, },
{ -- Stop snippet when leaving insert mode
lhs = '<Esc>',
rhs = function()
vim.snippet.stop()
return '<Esc>'
end,
},
} }
M.telescope = { M.telescope = {