Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible in vim to navigate recursively to previous edit points (i.e. points where the text has been changed)? Such a feature would be incredibly useful for $\TeX$ document editing, where you often need to move large chunks of text fairly large distances, and navigation can get quite confusing.

Plugins with this functionality are welcome, if it can't be done with basic vim.

share|improve this question
1  
Something like Ctrl-O and Ctrl-I? – ldigas Apr 17 '12 at 3:17
@Idigas I think so. Stick that in an answer, and I'll accept it. If you can explain the jumpslist more coherently than the manual, that'd be greatly appreciated (especially the conditions under which jumps are created). – naught101 Apr 17 '12 at 4:17
Alas no, sorry. Wish I could, but I don't use them that often - merely know of them. Generally, I believe they're the last places where your cursor was before editing, or doing some window opeartions. – ldigas Apr 17 '12 at 4:51
1  
C-o and C-i go through the jumplist, see this answer for how to jump through the changelist. Similar but useful none the less. – Randy Morris Apr 17 '12 at 10:32
hey @RandyMorris, that's actually a more appropriate answer. Please post it as an answer! – naught101 Apr 17 '12 at 10:40

1 Answer

up vote 4 down vote accepted

Something like Ctrl-O and Ctrl-I? These cycle through the 'jumplist' (O goes backwards, I forwards), which is the list of previous edits and jumps.

You can print the current jumpslist with :ju[mps]

For more detail on this funcitonality, check :h jumpslist

share|improve this answer
@naught101 - An excellent edit. Thank you! – ldigas Apr 17 '12 at 15:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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