Don't use tab for autocomplete selection

This commit is contained in:
2021-09-16 22:50:19 +02:00
parent 879d60c37c
commit aebef6589d
2 changed files with 2 additions and 8 deletions

View File

@@ -55,8 +55,6 @@ utils.map('v', '<', '<gv')
utils.map('v', '>', '>gv')
-- Highlight word under cursor
utils.map('n', 'ü', ":let @/='\\<<C-R>=expand(\"<cword>\")<CR>\\>'<CR>:set hls<CR>", { noremap = true, silent = true })
utils.map('v', 'ü', "y:let @/='<C-R>=escape(@\",'/\\')<CR>'<CR>:set hls<CR>", { noremap = true, silent = true })
-- Close Buffer
utils.map('n', '<C-w>', ':bd<CR>')