I've tried looking for a solution to my problem, but I can't seem to find anything that works. I'm using VsVim, the Vim plugin for Visual Studio. In my _vsvimrc
, I have the following remaps:
nnoremap <A-=> <C-a>
nnoremap <A--> <C-x>
The ALT+= remap works just fine, but the other mapping is where I'm having issues. When I try to use it, I just get an error sound and it doesn't do anything. Looking at :map
I can see that it looks like it's mapped. I'm just assuming <lt>A
is ALT.
n <lt>A--> <C-X>
n ½ <C-A>
So I'm inclined to believe my problem is with the -
dash mapping. Is there a different way to map it that I'm not aware of?
Any help would be appreciated.