VIM: Fixes <del> key

For some reason the del key isn't working for me so I re-map it
<right><bs>
Jonathan Hodgson 4 years ago
parent 4be7c74d21
commit 925ca95619
  1. 3
      nvim/.config/nvim/plugin/mappings.vim

@ -52,3 +52,6 @@ vnoremap [U :call mine#encoding#wrapper('urlEncodeAll')<cr>
vnoremap ]U :call mine#encoding#wrapper('urlDecode')<cr>
vnoremap [h :call mine#encoding#wrapper('hexEncode')<cr>
vnoremap ]h :call mine#encoding#wrapper('hexDecode')<cr>
" Makes the delete key work in insert mode
inoremap <Del> <Right><BS>

Loading…
Cancel
Save