How do I get the increment by 1 behavior in MacVim for Command-A? <C-A>
increments as excpected. In windows I just have to unmap <C-A>
, so in MacVim I've tried the following:
" Doesn't seem to work. <D-A> still selects all
macmenu Edit.Select\ All key=<Nop>
nnoremap <D-A> <C-A>
_
" Doesn't work, no mapping exists
nunmap <D-A>
I've looked at the following, but I still can't figure it out:
how to map command key when configurate .vimrc?
How to increment in vim under windows (where CTRL-A does not work...)