In vim, I would like to undo through all changes in all buffers, in chronological order.
e.g., in a vim session I typically have many tabs open, with many windows in each tab. Using u to undo (or g; / g, to move though the changelist), vim moves through changes made to that buffer, even if there are more recent made changes in other buffers. (Which I admit, is what I want most of the time.)
But is there a way to move back through changes in all buffers in chronological order? (I imagine vim would jump around from tab to tab, which would be ok.)
Why would this be useful? ... mostly so when I resume coding after a break I can remind myself of "where I'm up to", i.e all the changes I made last time.
(Using macvim 7.3)
UPDATE: responses about using git / mercurial make good points (thanks especially for git stash), but I'd still find this feature useful as it steps me back through recent changes, in order, with syntax coloring, inside vim etc.)
git stash. – derekerdmann May 23 '12 at 11:36