Reputation: 35
I am using gvim under linux and I really love it, the problem I have with it is that Shorcuts like Crlt+C doesn't work... I added the following code to my gvimrc but it doesn't have any effect :/
nmap <C-V> "+gP
nmap <C-V> "+y
nmap <C-A> ggVG
nmap <C-Z> u
nmap <C-Y> ^R
Upvotes: 0
Views: 444
Reputation: 879
The problem is not that the shortcuts don't work, rather than that you don't know what the shortcuts are supposed to do.
It might help for you if you add behave mswin
to your .vimrc
. It remaps many key bindings to behave more like other programs.
Upvotes: 2