Reputation: 6179
I want to insert text say ;
after the cursor in Vim visual mode.
Jan
Feb
Mar
Ctrl + V
--> jj
--> Shift + i
results in
Ja;n
Fe;b
Ma;r
Upvotes: 1
Views: 629
Reputation: 23235
Just like i inserts before the cursor and a inserts after the cursor in normal mode, Shift+a inserts after the cursor in visual block mode.
Upvotes: 4