I was wondering if there's a way to return to the previous line you were on in Vim. Say, for example, I'm writing a C code and I just wanted to add an #include at the top of the page, so I press gg and go to the top, add the include, and then i want to return to the line I left off of. Is this possible in Vim?

Thanks! Amit

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

yes. You can use `` in order to go jump through the last two positions.

Otherwise, CTRL-O and CTRL-I can help you. See :help CTRL-I.

link|improve this answer
Most excellent. Thank you! – Amit Jan 29 '11 at 15:14
4  
@Amit also try g; and g,, it is go to position previous/next change. Sometimes it suits better then <C-o>/<C-i>. – ZyX Jan 29 '11 at 17:38
@Zyx: Thank you, I'll definitely use that. – Amit Jan 29 '11 at 17:39
@Zyx: True, I had completely forgotten that one! – Benoit Jan 29 '11 at 19:54
feedback

Use a mark:

ma

marks the spot (before the gg)

`a

brings you back.

link|improve this answer
Most excellent. Thank you! – Amit Jan 29 '11 at 15:13
Another good way to do it. Though, sometimes you want to go back and you didn't think about setting a mark. – Benoit Jan 29 '11 at 15:17
I know but for some reason ` rarely seems to bring me where I think it should :) – Matteo Riva Jan 29 '11 at 15:18
@Benoit: exactly. – Amit Jan 29 '11 at 15:18
Ahh I see. uh oh. It worked for me when I just tried it. Is it iffy on line locations? – Amit Jan 29 '11 at 15:19
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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