Skip to content

Commit

Permalink
autoload: groups of one byte and 8 bytes per line
Browse files Browse the repository at this point in the history
  • Loading branch information
deadbaed committed May 19, 2019
1 parent 616862e commit 5bc5db7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/dhex.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
" made by x4m3

function! s:convert_txt_hex()
silent %!xxd
silent %!xxd -g 1 -c 8
set binary
echo "converted from txt to hex."
endfunction

function! s:convert_hex_txt()
silent %!xxd -r
silent %!xxd -r -g 1 -c 8
echo "converted from hex to txt."
endfunction

Expand Down

0 comments on commit 5bc5db7

Please sign in to comment.