I want to take a visual selection and flip it so that the first line of the selection is on the bottom. From:

<other_stuff>
The
wheels
go
round.
<more_stuff>

Visual select the sentnce and then flip:

<other_stuff>
round.
go
wheels
The
<more_stuff>

Any idea how to do this simply. I would rather not have to instal a plugin to do it.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

When you make a visual selection Vim automatically makes the bookmarks '< and '> at the start and end of the block respectively, so you can do what you want in a couple of ways.

In normal mode: '>dd'<P

As an ex command: :'>d | '<-1 put

NB the bookmarks remain after you exit visual mode, so you do not have to stay in visual mode to use these.

edit:

Oops, I misread the question and thought you only wanted the last line put at the start, but you want the entire block reversed. The simplest solution if you are on a unix system:

:'<,'>!tac

This pipes the lines through the unix 'reverse cat' program.

link|improve this answer
I would have used "tac" also. – Drasill Apr 6 '11 at 11:45
I like it. Easier to remember and execute. I also learned a new (to me) unix command! Thanks! – stephenmm Apr 6 '11 at 15:21
feedback

According to :help 12.4 you can mark the first line with the mt, move to the last line you want reversed then use the command :'t+1,.g/^/m 't

link|improve this answer
Thanks, the example in the help worked. BTW Your ticks are off a bit. How were you able to find that so quickly? – stephenmm Apr 6 '11 at 4:10
Oh thanks, I fixed the typo. I remembered using it a while ago, otherwise I usually check stackoverflow or superuser. – GWW Apr 6 '11 at 4:12
feedback

Your Answer

 
or
required, but never shown

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