VIM: adds hex encoding and decoding

This commit is contained in:
Jonathan Hodgson 2020-09-27 01:09:25 +01:00
parent 380e2c81c8
commit 935caedb16
2 changed files with 15 additions and 0 deletions

View file

@ -50,3 +50,5 @@ vnoremap [u :call mine#encoding#wrapper('urlEncode')<cr>
vnoremap ]u :call mine#encoding#wrapper('urlDecode')<cr>
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>