dotfiles/nvim/.config/nvim/after/plugin/word-column.vim
Sanchayan Maity 819494b4bb nvim: after/plugin/word-column: Change default mappings for textobj-word-column
We want to use vim-textobj-comment and hence need to make the ac mapping
available.
2022-02-08 15:47:57 +05:30

11 lines
193 B
VimL

call textobj#user#map('wordcolumn', {
\ 'word' : {
\ 'select-i' : 'iq',
\ 'select-a' : 'aq',
\ },
\ 'WORD' : {
\ 'select-i' : 'iQ',
\ 'select-a' : 'aQ',
\ },
\ })