Close buffer keymap

This commit is contained in:
Oliver Hartmann
2021-09-15 08:23:56 +02:00
committed by Oliver Hartmann
parent 82f544a1f5
commit ea64556fa0

View File

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