dotfiles/nvim/.config/nvim/after/plugin/word-column.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
193 B
VimL
Raw Normal View History

call textobj#user#map('wordcolumn', {
\ 'word' : {
\ 'select-i' : 'is',
\ 'select-a' : 'as',
\ },
\ 'WORD' : {
\ 'select-i' : 'iS',
\ 'select-a' : 'aS',
\ },
\ })