Show cursor position or selected data in corresponding HEX/ASCII area in vim's xxd buffer.
Minimal working configuration using vim-plug.
set nocompatible
filetype plugin indent on
call plug#begin('~/.vim/plugged')
Plug 'zoumi/vim-xxd-highlight-sel'
call plug#end()
Recommanded working configuration using vim-plug.
set nocompatible
filetype plugin indent on
call plug#begin('~/.vim/plugged')
Plug 'fidian/hexmode',{'on':'Hexmode'}
nnoremap <C-H> :Hexmode<CR>
Plug 'zoumi/vim-xxd-highlight-sel'
call plug#end()