I am using VIM in Windows. The problem is that I want to use Ctrl-V as a visual mode. However, this key has conflict with Windows paste. How can I reset this key back to VIM visual mode instead of pasting. I prefer to set this in my _vimrc configuration file. Thanks for any help!
|
|
|
From the VIM documentation:
|
|||||||
|
|
Check your _vimrc file and see if it sources mswin.vim. That script maps the ^v to the paste. You can either remove that line on your _vimrc file or disable the mapping commands directly on mswin.vim. Do a :help behave on vim for more info. |
|||
|
|
|
I'm not sure there is a lot you can do about that. You can use Ctrl-Q instead though. |
|||
|
|
|
Visual mode (and other stuff) working like in Unix requires both JOP's and Windows Programmer's suggestions. In GVim on Windows, go to the edit menu, click on startup settings, and comment out the windows-specific garbage (using the vimrc comment character, which is a double-quote). The mswin.vim file is where the ctrl-v override is specified, and the behave mswin option makes it so that the arrow keys don't just apply motion like you'd expect (it also changes the mouse selection behavior).
I like to add a black-background colorscheme in there as well, so it looks more like what I'd see in a terminal (and because a light background is great on paper, but awful on a backlit screen):
|
|||
|
|
|
The combination of jop's advice (looking for mswin.vim in the default _vimrc file) and "Windows programmer's" advice (getting rid of the "behave mswin" line) worked like a charm for me. (my rep is too low to vote them up or combine them -- someone clean this up for me, or I'll come back once my rep is higher) |
|||||||||||
|
|
I prefer the same keystrokes everywhere so I use this in my .vimrc to override mswin.vim:
|
|||
|
|