Reputation: 9997
Using vim under linux I can indent a block of code using the VISUAL mode and pressing ">". In vim under Windows this does not happen.
This is what happens:
Alternatively, if I use the SELECT mode for selecting code the ">" does not indent it.
Upvotes: 1
Views: 3107
Reputation: 32976
Haven't you keep mswin.vim ? If you want the same behaviour on both OSes, get rid of this file.
Upvotes: 6
Reputation: 7429
Weird, I don't experience this behavior on Vim 7.1 on Win XP. Perhaps setting nocompatible will help you?
Upvotes: 0
Reputation: 234654
If you use V (uppercase) you enter VISUAL LINE mode. For VISUAL mode you should use v (lowercase).
And if you use the standard movement keys (hjkl) everything works fine.
If you dislike the default movement keys, use these mappings:
:map <Up> k
:map <Down> j
:map <Left> h
:map <Right> l
Upvotes: 4
Reputation: 9997
Ok, I got it. In Windows I should press Shift+Down to remain in the VISUAL mode.
Upvotes: 5