2010-10-12 23:43:29 -04:00
|
|
|
*gundo.txt* Graph your undo tree so you can actually USE it.
|
|
|
|
|
|
|
|
Making's Vim's undo tree usable by humans.
|
|
|
|
|
|
|
|
==============================================================================
|
2010-10-20 20:08:10 -04:00
|
|
|
CONTENTS *Gundo-contents*
|
|
|
|
|
|
|
|
1. Intro .......................... |GundoIntro|
|
|
|
|
2. Usage .......................... |GundoUsage|
|
|
|
|
3. Configuration .................. |GundoConfig|
|
|
|
|
3.1 gundo_width ............... |gundo_width|
|
|
|
|
3.2 gundo_preview_height ...... |gundo_preview_height|
|
2010-10-27 19:09:02 -04:00
|
|
|
3.3 gundo_preview_bottom ...... |gundo_preview_bottom|
|
|
|
|
3.4 gundo_right ............... |gundo_right|
|
2010-11-09 21:35:34 -05:00
|
|
|
3.5 gundo_help ................ |gundo_help|
|
|
|
|
3.6 gundo_disable ............. |gundo_disable|
|
2010-10-20 20:08:10 -04:00
|
|
|
4. License ........................ |GundoLicense|
|
|
|
|
5. Bugs ........................... |GundoBugs|
|
|
|
|
6. Contributing ................... |GundoContributing|
|
2010-10-29 10:25:02 -04:00
|
|
|
7. Changelog ...................... |GundoChangelog|
|
|
|
|
8. Credits ........................ |GundoCredits|
|
2010-10-20 20:08:10 -04:00
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
1. Intro *GundoIntro*
|
2010-10-12 23:43:29 -04:00
|
|
|
|
|
|
|
You know that Vim lets you undo changes like any text editor. What you might
|
|
|
|
not know is that it doesn't just keep a list of your changes -- it keeps
|
|
|
|
a goddamed |:undo-tree| of them.
|
|
|
|
|
|
|
|
Say you make a change (call it X), undo that change, and then make another
|
|
|
|
change (call it Y). With most editors, change X is now gone forever. With Vim
|
|
|
|
you can get it back.
|
|
|
|
|
|
|
|
The problem is that trying to do this in the real world is painful. Vim gives
|
|
|
|
you an |:undolist| command that shows you the leaves of the tree. Good luck
|
|
|
|
finding the change you want in that list.
|
|
|
|
|
|
|
|
Gundo is a plugin to make browsing this ridiculously powerful undo tree less
|
|
|
|
painful.
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
2. Usage *GundoUsage*
|
|
|
|
|
|
|
|
We'll get to the technical details later, but if you're a human the first
|
|
|
|
thing you need to do is add a mapping to your |:vimrc| to toggle the undo
|
|
|
|
graph: >
|
|
|
|
|
|
|
|
nnoremap <F5> :GundoToggle<CR>
|
|
|
|
|
|
|
|
Change the mapped key to suit your taste. We'll stick with F5 because that's
|
|
|
|
what the author uses.
|
|
|
|
|
|
|
|
Now you can press F5 to toggle the undo graph and preview pane, which will
|
|
|
|
look something like this: >
|
|
|
|
|
2010-10-13 15:19:20 -04:00
|
|
|
Undo graph File
|
|
|
|
+-----------------------------------+------------------------------------+
|
|
|
|
| " Gundo for something.txt [1] |one |
|
|
|
|
| " j/k - move between undo states |two |
|
|
|
|
| " <cr> - revert to that state |three |
|
|
|
|
| |five |
|
|
|
|
| @ [5] 3 hours ago | |
|
|
|
|
| | | |
|
|
|
|
| | o [4] 4 hours ago | |
|
|
|
|
| | | | |
|
|
|
|
| o | [3] 4 hours ago | |
|
|
|
|
| | | | |
|
|
|
|
| o | [2] 4 hours ago | |
|
|
|
|
| |/ | |
|
|
|
|
| o [1] 4 hours ago | |
|
|
|
|
| | | |
|
2010-10-17 15:02:33 -04:00
|
|
|
| o [0] Original | |
|
2010-10-13 15:19:20 -04:00
|
|
|
+-----------------------------------+ |
|
|
|
|
| --- 3 2010-10-12 06:27:35 PM | |
|
|
|
|
| +++ 5 2010-10-12 07:38:37 PM | |
|
|
|
|
| @@ -1,3 +1,4 | |
|
|
|
|
| one | |
|
|
|
|
| two | |
|
|
|
|
| three | |
|
|
|
|
| +five | |
|
|
|
|
+-----------------------------------+------------------------------------+
|
|
|
|
Preview pane
|
2010-10-12 23:43:29 -04:00
|
|
|
|
|
|
|
Your current position in the undo tree is marked with an '@' character. Other
|
|
|
|
nodes are marked with an 'o' character.
|
|
|
|
|
|
|
|
When you toggle open the graph Gundo will put your cursor on your current
|
|
|
|
position in the tree. You can move up and down the graph with the j and
|
|
|
|
k keys.
|
|
|
|
|
|
|
|
You can move to the top of the graph (the newest state) with gg and to the
|
|
|
|
bottom of the graph (the oldest state) with G.
|
|
|
|
|
|
|
|
As you move between undo states the preview pane will show you a unified diff
|
|
|
|
of the change that state made.
|
|
|
|
|
2010-10-20 21:24:17 -04:00
|
|
|
Pressing enter on a state (or double clicking on it) will revert the contents
|
|
|
|
of the file to match that state.
|
2010-10-12 23:43:29 -04:00
|
|
|
|
2010-11-09 21:13:21 -05:00
|
|
|
You can use p on a state to make the preview window show the diff between
|
|
|
|
your current state and the selected state, instead of a preview of what the
|
|
|
|
selected state changed.
|
|
|
|
|
2010-10-12 23:43:29 -04:00
|
|
|
Pressing P while on a state will initiate "play to" mode targeted at that
|
|
|
|
state. This will replay all the changes between your current state and the
|
|
|
|
target, with a slight pause after each change. It's mostly useless, but can be
|
|
|
|
fun to watch and see where your editing lags -- that might be a good place to
|
|
|
|
define a new mapping to speed up your editing.
|
|
|
|
|
2010-10-15 18:25:55 -04:00
|
|
|
Pressing q while in the undo graph will close it. You can also just press your
|
|
|
|
toggle mapping key.
|
2010-10-12 23:43:29 -04:00
|
|
|
|
|
|
|
==============================================================================
|
2010-10-20 20:08:10 -04:00
|
|
|
3. Configuration *GundoConfig*
|
|
|
|
|
|
|
|
You can tweak the behavior of Gundo by setting a few variables in your :vimrc
|
|
|
|
file. For example: >
|
|
|
|
|
|
|
|
let g:gundo_width = 60
|
|
|
|
let g:gundo_preview_height = 40
|
|
|
|
let g:gundo_right = 1
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
3.1 g:gundo_width *gundo_width*
|
|
|
|
|
|
|
|
Set the horizontal width of the Gundo graph (and preview).
|
|
|
|
|
|
|
|
Default: 45
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
3.2 g:gundo_preview_height *gundo_preview_height*
|
|
|
|
|
|
|
|
Set the vertical height of the Gundo preview.
|
|
|
|
|
|
|
|
Default: 15
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
2010-10-27 19:09:02 -04:00
|
|
|
3.3 g:gundo_preview_bottom *gundo_preview_bottom*
|
|
|
|
|
|
|
|
Force the preview window below current windows instead of below the graph.
|
|
|
|
This gives the preview window more space to show the unified diff.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
+--------+ +--------+
|
|
|
|
!g! ! ! !g!
|
|
|
|
!g! ! or ! !g!
|
|
|
|
!g!______! !______!g!
|
|
|
|
!g!pppppp! !pppppp!g!
|
|
|
|
+--------+ +--------+
|
|
|
|
|
|
|
|
Default: 0
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
3.4 g:gundo_right *gundo_right*
|
2010-10-20 20:08:10 -04:00
|
|
|
|
|
|
|
Set this to 1 to make the Gundo graph (and preview) open on the right side
|
|
|
|
instead of the left.
|
|
|
|
|
|
|
|
Default: 0 (off, open on the left side)
|
|
|
|
|
2010-11-02 00:07:18 -04:00
|
|
|
------------------------------------------------------------------------------
|
2010-11-09 21:35:34 -05:00
|
|
|
3.5 g:gundo_help *gundo_help*
|
|
|
|
|
|
|
|
Set this to 0 to disable the help text in the Gundo graph window.
|
|
|
|
|
|
|
|
Default: 1 (show the help)
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
3.6 g:gundo_disable *gundo_disable*
|
2010-11-02 00:07:18 -04:00
|
|
|
|
|
|
|
Set this to 1 to disable Gundo entirely.
|
|
|
|
|
|
|
|
Useful if you use the same ~/.vim folder on multiple machines, and some of
|
|
|
|
them may not have Python support.
|
|
|
|
|
|
|
|
Default: 0 (Gundo is enabled as usual)
|
|
|
|
|
2010-10-20 20:08:10 -04:00
|
|
|
==============================================================================
|
|
|
|
4. License *GundoLicense*
|
2010-10-12 23:43:29 -04:00
|
|
|
|
|
|
|
GPLv2+. Look it up.
|
|
|
|
|
|
|
|
==============================================================================
|
2010-10-20 20:08:10 -04:00
|
|
|
5. Bugs *GundoBugs*
|
2010-10-12 23:43:29 -04:00
|
|
|
|
|
|
|
If you find a bug please post it on the issue tracker:
|
|
|
|
http://bitbucket.org/sjl/gundo.vim/issues?status=new&status=open
|
|
|
|
|
|
|
|
==============================================================================
|
2010-10-20 20:08:10 -04:00
|
|
|
6. Contributing *GundoContributing*
|
2010-10-12 23:43:29 -04:00
|
|
|
|
|
|
|
Think you can make this plugin better? Awesome. Fork it on BitBucket or GitHub
|
|
|
|
and send a pull request.
|
|
|
|
|
|
|
|
BitBucket: http://bitbucket.org/sjl/gundo.vim/
|
|
|
|
GitHub: http://github.com/sjl/gundo.vim/
|
|
|
|
|
|
|
|
==============================================================================
|
2010-10-29 10:25:02 -04:00
|
|
|
7. Changelog *GundoChangelog*
|
|
|
|
|
2010-11-10 11:28:27 -05:00
|
|
|
v2.0.0
|
2010-11-09 19:46:05 -05:00
|
|
|
* Make GundoToggle close the Gundo windows if they're visible but not the
|
|
|
|
current window, instead of moving to them.
|
2010-11-10 11:28:27 -05:00
|
|
|
* Add the g:gundo_help setting.
|
|
|
|
* Add the g:gundo_disable setting.
|
2010-11-09 21:13:21 -05:00
|
|
|
* Add the 'p' mapping to preview the result of reverting to the selected
|
|
|
|
state.
|
2010-11-10 11:28:27 -05:00
|
|
|
* Fix movement commands with counts in the graph.
|
2010-10-29 10:25:02 -04:00
|
|
|
v1.0.0
|
2010-11-02 00:10:04 -04:00
|
|
|
* Initial stable release.
|
2010-10-29 10:25:02 -04:00
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
8. Credits *GundoCredits*
|
2010-10-12 23:43:29 -04:00
|
|
|
|
|
|
|
The graphing code was all taken from Mercurial, hence the GPLv2+ license.
|
|
|
|
|
|
|
|
The plugin was heavily inspired by histwin.vim, and the code for scratch.vim
|
|
|
|
helped the author get started.
|
|
|
|
|
|
|
|
==============================================================================
|