Reputation: 389
I'm using gVim version 7.3 on my Windows. When using gVim in my Unix, to insert a common text at the beginning of each line in a file, I do the following steps:
So here's my question. How do I do the same thing in my gVim on Windows? It's not working if I follow the above as on Unix. Could someone please help me out with this?
Upvotes: 10
Views: 8082
Reputation: 15715
If you have behave mswin
in your vimrc then some of the Vim mappings are modified to be more "Windows-like". In particular you will need to use <CTRL-Q>
to enter block-visual mode.
I have behave xterm
in my Windows vimrc which eliminates these issues.
Upvotes: 15