Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.09 KB

readme.md

File metadata and controls

47 lines (29 loc) · 1.09 KB

vim-xxd-highlight-sel

Show cursor position or selected data in corresponding HEX/ASCII area in vim's xxd buffer.

Overview

Normal mode: NOMAL

Visual block mode: visualb

Visual line mode: visuall

Minimal working example

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 example

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()