Using vim, I'd like to make a selection of lines and then perform a series of operations on them. The problem is that with each op vim exits visual mode and the lines have to be selected again. Any ideas? Thank you.

link|improve this question

feedback

1 Answer

up vote 11 down vote accepted
  • You can use gv to reselect the last selection quickly.

  • You can also use | to chain multiple commands : See link to Vim Wiki

As far as I know there is no way to stay in Visual mode.

If your having issues with indentation : e.g. selecting two lines, indent them and then having to reselect to indent again, it is quicker to use the . command to repeat the last command without having to reselect anything.

link|improve this answer
Thanks! I just googled it in the right way, finding that it had been asked. superuser.com/questions/115038/vim-visual-mode-stay-selected – Fuligginoso Jan 17 '11 at 8:06
@Fuligginoso, you seem to be new to StackOverflow, welcome. Could you please mark this answer as the accepted answer for other people to benefit? – Rafid Jan 17 '11 at 11:56
Done :) thank you. I'm new to this website and I like it every day more. – Fuligginoso Jan 19 '11 at 7:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.