VIM: Fixes <del> key

For some reason the del key isn't working for me so I re-map it
<right><bs>
This commit is contained in:
Jonathan Hodgson 2020-09-29 14:26:19 +01:00
parent 8a05cf8689
commit 9b62d793ae

View file

@ -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>