S3iOp
S3iOp

Reputation: 35

Custom Hotkeys in gvim

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

Answers (1)

Marco
Marco

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

Related Questions