Skip to content

Commit

Permalink
neovim: remove CR mapping for autocompletion
Browse files Browse the repository at this point in the history
  • Loading branch information
geodimm committed Jan 3, 2025
1 parent d619826 commit 5e00169
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions nvim/lua/plugins/autocompletion.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,6 @@ return {
opts = {
keymap = {
preset = 'super-tab',
['<CR>'] = {
function(cmp)
if cmp.snippet_active() then
return cmp.accept()
else
return cmp.select_and_accept()
end
end,
'snippet_forward',
'fallback',
},
},

enabled = function()
Expand Down

0 comments on commit 5e00169

Please sign in to comment.