|
@@ -1,32 +1,38 @@
|
|
|
-*gundo.txt* Graph your undo tree so you can actually USE it.
|
|
|
|
|
|
|
+*mundo.txt* Graph your undo tree so you can actually USE it.
|
|
|
|
|
|
|
|
Making Vim's undo tree usable by humans.
|
|
Making Vim's undo tree usable by humans.
|
|
|
|
|
|
|
|
==============================================================================
|
|
==============================================================================
|
|
|
-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|
|
|
|
|
|
- 3.3 gundo_preview_bottom ...... |gundo_preview_bottom|
|
|
|
|
|
- 3.4 gundo_right ............... |gundo_right|
|
|
|
|
|
- 3.5 gundo_help ................ |gundo_help|
|
|
|
|
|
- 3.6 gundo_disable ............. |gundo_disable|
|
|
|
|
|
- 3.7 gundo_map_move_older ...... |gundo_map_move_older|
|
|
|
|
|
- gundo_map_move_newer ...... |gundo_map_move_newer|
|
|
|
|
|
- 3.8 gundo_close_on_revert ..... |gundo_close_on_revert|
|
|
|
|
|
- 3.9 gundo_preview_statusline .. |gundo_preview_statusline|
|
|
|
|
|
- gundo_tree_statusline ..... |gundo_tree_statusline|
|
|
|
|
|
- 4. License ........................ |GundoLicense|
|
|
|
|
|
- 5. Bugs ........................... |GundoBugs|
|
|
|
|
|
- 6. Contributing ................... |GundoContributing|
|
|
|
|
|
- 7. Changelog ...................... |GundoChangelog|
|
|
|
|
|
- 8. Credits ........................ |GundoCredits|
|
|
|
|
|
|
|
+CONTENTS *Mundo-contents*
|
|
|
|
|
+
|
|
|
|
|
+ 1. Intro ........................... |MundoIntro|
|
|
|
|
|
+ 2. Usage ........................... |MundoUsage|
|
|
|
|
|
+ 3. Configuration ................... |MundoConfig|
|
|
|
|
|
+ 3.1 mundo_width ............... |mundo_width|
|
|
|
|
|
+ 3.2 mundo_preview_height ...... |mundo_preview_height|
|
|
|
|
|
+ 3.3 mundo_preview_bottom ...... |mundo_preview_bottom|
|
|
|
|
|
+ 3.4 mundo_right ............... |mundo_right|
|
|
|
|
|
+ 3.5 mundo_help ................ |mundo_help|
|
|
|
|
|
+ 3.6 mundo_disable ............. |mundo_disable|
|
|
|
|
|
+ 3.7 mundo_map_move_older ...... |mundo_map_move_older|
|
|
|
|
|
+ mundo_map_move_newer ...... |mundo_map_move_newer|
|
|
|
|
|
+ 3.8 mundo_close_on_revert ..... |mundo_close_on_revert|
|
|
|
|
|
+ 3.9 mundo_preview_statusline .. |mundo_preview_statusline|
|
|
|
|
|
+ mundo_tree_statusline ..... |mundo_tree_statusline|
|
|
|
|
|
+ 3.10 mundo_auto_preview ........ |mundo_auto_preview|
|
|
|
|
|
+ 3.11 mundo_verbose_graph ....... |mundo_verbose_graph|
|
|
|
|
|
+ 3.12 mundo_playback_delay ...... |mundo_playback_delay|
|
|
|
|
|
+ 3.13 mundo_mirror_graph ........ |mundo_mirror_graph|
|
|
|
|
|
+ 3.14 mundo_inline_undo ......... |mundo_inline_undo|
|
|
|
|
|
+ 3.15 mundo_return_on_revert .... |mundo_return_on_revert|
|
|
|
|
|
+ 4. License ......................... |MundoLicense|
|
|
|
|
|
+ 5. Bugs ............................ |MundoBugs|
|
|
|
|
|
+ 6. Contributing .................... |MundoContributing|
|
|
|
|
|
+ 7. Changelog ....................... |MundoChangelog|
|
|
|
|
|
+ 8. Credits ......................... |MundoCredits|
|
|
|
|
|
|
|
|
==============================================================================
|
|
==============================================================================
|
|
|
-1. Intro *GundoIntro*
|
|
|
|
|
|
|
+1. Intro *MundoIntro*
|
|
|
|
|
|
|
|
You know that Vim lets you undo changes like any text editor. What you might
|
|
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
|
|
not know is that it doesn't just keep a list of your changes -- it keeps
|
|
@@ -40,17 +46,17 @@ 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
|
|
you an |:undolist| command that shows you the leaves of the tree. Good luck
|
|
|
finding the change you want in that list.
|
|
finding the change you want in that list.
|
|
|
|
|
|
|
|
-Gundo is a plugin to make browsing this ridiculously powerful undo tree less
|
|
|
|
|
|
|
+Mundo is a plugin to make browsing this ridiculously powerful undo tree less
|
|
|
painful.
|
|
painful.
|
|
|
|
|
|
|
|
==============================================================================
|
|
==============================================================================
|
|
|
-2. Usage *GundoUsage*
|
|
|
|
|
|
|
+2. Usage *MundoUsage*
|
|
|
|
|
|
|
|
We'll get to the technical details later, but if you're a human the first
|
|
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
|
|
thing you need to do is add a mapping to your |:vimrc| to toggle the undo
|
|
|
graph: >
|
|
graph: >
|
|
|
|
|
|
|
|
- nnoremap <F5> :GundoToggle<CR>
|
|
|
|
|
|
|
+ nnoremap <F5> :MundoToggle<CR>
|
|
|
|
|
|
|
|
Change the mapped key to suit your taste. We'll stick with F5 because that's
|
|
Change the mapped key to suit your taste. We'll stick with F5 because that's
|
|
|
what the author uses.
|
|
what the author uses.
|
|
@@ -60,7 +66,7 @@ look something like this: >
|
|
|
|
|
|
|
|
Undo graph File
|
|
Undo graph File
|
|
|
+-----------------------------------+------------------------------------+
|
|
+-----------------------------------+------------------------------------+
|
|
|
- | " Gundo for something.txt [1] |one |
|
|
|
|
|
|
|
+ | " Mundo for something.txt [1] |one |
|
|
|
| " j/k - move between undo states |two |
|
|
| " j/k - move between undo states |two |
|
|
|
| " <cr> - revert to that state |three |
|
|
| " <cr> - revert to that state |three |
|
|
|
| |five |
|
|
| |five |
|
|
@@ -70,7 +76,7 @@ look something like this: >
|
|
|
| | | | |
|
|
| | | | |
|
|
|
| o | [3] 4 hours ago | |
|
|
| o | [3] 4 hours ago | |
|
|
|
| | | | |
|
|
| | | | |
|
|
|
- | o | [2] 4 hours ago | |
|
|
|
|
|
|
|
+ | w | [2] 4 hours ago | |
|
|
|
| |/ | |
|
|
| |/ | |
|
|
|
| o [1] 4 hours ago | |
|
|
| o [1] 4 hours ago | |
|
|
|
| | | |
|
|
| | | |
|
|
@@ -86,10 +92,11 @@ look something like this: >
|
|
|
+-----------------------------------+------------------------------------+
|
|
+-----------------------------------+------------------------------------+
|
|
|
Preview pane
|
|
Preview pane
|
|
|
|
|
|
|
|
-Your current position in the undo tree is marked with an '@' character. Other
|
|
|
|
|
-nodes are marked with an 'o' character.
|
|
|
|
|
|
|
+Your current position in the undo tree is marked with an '@' character. Undo
|
|
|
|
|
+positions that were saved to disk are marked with a 'w'. Other nodes are marked
|
|
|
|
|
+with an 'o' character.
|
|
|
|
|
|
|
|
-When you toggle open the graph Gundo will put your cursor on your current
|
|
|
|
|
|
|
+When you toggle open the graph Mundo will put your cursor on your current
|
|
|
position in the tree. You can move up and down the graph with the j and
|
|
position in the tree. You can move up and down the graph with the j and
|
|
|
k keys.
|
|
k keys.
|
|
|
|
|
|
|
@@ -116,31 +123,31 @@ Pressing q while in the undo graph will close it. You can also just press your
|
|
|
toggle mapping key.
|
|
toggle mapping key.
|
|
|
|
|
|
|
|
==============================================================================
|
|
==============================================================================
|
|
|
-3. Configuration *GundoConfig*
|
|
|
|
|
|
|
+3. Configuration *MundoConfig*
|
|
|
|
|
|
|
|
-You can tweak the behavior of Gundo by setting a few variables in your :vimrc
|
|
|
|
|
|
|
+You can tweak the behavior of Mundo by setting a few variables in your :vimrc
|
|
|
file. For example: >
|
|
file. For example: >
|
|
|
|
|
|
|
|
- let g:gundo_width = 60
|
|
|
|
|
- let g:gundo_preview_height = 40
|
|
|
|
|
- let g:gundo_right = 1
|
|
|
|
|
|
|
+ let g:mundo_width = 60
|
|
|
|
|
+ let g:mundo_preview_height = 40
|
|
|
|
|
+ let g:mundo_right = 1
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
------------------------------------------------------------------------------
|
|
|
-3.1 g:gundo_width *gundo_width*
|
|
|
|
|
|
|
+3.1 g:mundo_width *mundo_width*
|
|
|
|
|
|
|
|
-Set the horizontal width of the Gundo graph (and preview).
|
|
|
|
|
|
|
+Set the horizontal width of the Mundo graph (and preview).
|
|
|
|
|
|
|
|
Default: 45
|
|
Default: 45
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
------------------------------------------------------------------------------
|
|
|
-3.2 g:gundo_preview_height *gundo_preview_height*
|
|
|
|
|
|
|
+3.2 g:mundo_preview_height *mundo_preview_height*
|
|
|
|
|
|
|
|
-Set the vertical height of the Gundo preview.
|
|
|
|
|
|
|
+Set the vertical height of the Mundo preview.
|
|
|
|
|
|
|
|
Default: 15
|
|
Default: 15
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
------------------------------------------------------------------------------
|
|
|
-3.3 g:gundo_preview_bottom *gundo_preview_bottom*
|
|
|
|
|
|
|
+3.3 g:mundo_preview_bottom *mundo_preview_bottom*
|
|
|
|
|
|
|
|
Force the preview window below current windows instead of below the graph.
|
|
Force the preview window below current windows instead of below the graph.
|
|
|
This gives the preview window more space to show the unified diff.
|
|
This gives the preview window more space to show the unified diff.
|
|
@@ -157,78 +164,147 @@ Example:
|
|
|
Default: 0
|
|
Default: 0
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
------------------------------------------------------------------------------
|
|
|
-3.4 g:gundo_right *gundo_right*
|
|
|
|
|
|
|
+3.4 g:mundo_right *mundo_right*
|
|
|
|
|
|
|
|
-Set this to 1 to make the Gundo graph (and preview) open on the right side
|
|
|
|
|
|
|
+Set this to 1 to make the Mundo graph (and preview) open on the right side
|
|
|
instead of the left.
|
|
instead of the left.
|
|
|
|
|
|
|
|
Default: 0 (off, open on the left side)
|
|
Default: 0 (off, open on the left side)
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
------------------------------------------------------------------------------
|
|
|
-3.5 g:gundo_help *gundo_help*
|
|
|
|
|
|
|
+3.5 g:mundo_help *mundo_help*
|
|
|
|
|
|
|
|
-Set this to 0 to disable the help text in the Gundo graph window.
|
|
|
|
|
|
|
+Set this to 0 to disable the help text in the Mundo graph window.
|
|
|
|
|
|
|
|
Default: 1 (show the help)
|
|
Default: 1 (show the help)
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
------------------------------------------------------------------------------
|
|
|
-3.6 g:gundo_disable *gundo_disable*
|
|
|
|
|
|
|
+3.6 g:mundo_disable *mundo_disable*
|
|
|
|
|
|
|
|
-Set this to 1 to disable Gundo entirely.
|
|
|
|
|
|
|
+Set this to 1 to disable Mundo entirely.
|
|
|
|
|
|
|
|
Useful if you use the same ~/.vim folder on multiple machines, and some of
|
|
Useful if you use the same ~/.vim folder on multiple machines, and some of
|
|
|
them may not have Python support.
|
|
them may not have Python support.
|
|
|
|
|
|
|
|
-Default: 0 (Gundo is enabled as usual)
|
|
|
|
|
|
|
+Default: 0 (Mundo is enabled as usual)
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
------------------------------------------------------------------------------
|
|
|
-3.7 g:gundo_map_move_older, g:gundo_map_move_newer *gundo_map_move_older*
|
|
|
|
|
- *gundo_map_move_newer*
|
|
|
|
|
|
|
+3.7 g:mundo_map_move_older, g:mundo_map_move_newer *mundo_map_move_older*
|
|
|
|
|
+ *mundo_map_move_newer*
|
|
|
|
|
|
|
|
These options let you change the keys that navigate the undo graph. This is
|
|
These options let you change the keys that navigate the undo graph. This is
|
|
|
useful if you use a Dvorak keyboard and have changed your movement keys.
|
|
useful if you use a Dvorak keyboard and have changed your movement keys.
|
|
|
|
|
|
|
|
-Default: gundo_map_move_older = "j"
|
|
|
|
|
- gundo_map_move_newer = "k"
|
|
|
|
|
|
|
+Default: mundo_map_move_older = "j"
|
|
|
|
|
+ mundo_map_move_newer = "k"
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
------------------------------------------------------------------------------
|
|
|
-3.8 g:gundo_close_on_revert *gundo_close_on_revert*
|
|
|
|
|
|
|
+3.8 g:mundo_close_on_revert *mundo_close_on_revert*
|
|
|
|
|
|
|
|
-Set this to 1 to automatically close the Gundo windows when reverting.
|
|
|
|
|
|
|
+Set this to 1 to automatically close the Mundo windows when reverting.
|
|
|
|
|
|
|
|
Default: 0 (windows do not automatically close)
|
|
Default: 0 (windows do not automatically close)
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
------------------------------------------------------------------------------
|
|
|
-3.9 g:gundo_preview_statusline *gundo_preview_statusline*
|
|
|
|
|
- g:gundo_tree_statusline *gundo_tree_statusline*
|
|
|
|
|
|
|
+3.9 g:mundo_preview_statusline *mundo_preview_statusline*
|
|
|
|
|
+ g:mundo_tree_statusline *mundo_tree_statusline*
|
|
|
|
|
|
|
|
-Set these to a string to display it as the status line for each Gundo window.
|
|
|
|
|
|
|
+Set these to a string to display it as the status line for each Mundo window.
|
|
|
|
|
|
|
|
Default: unset (windows use the default statusline)
|
|
Default: unset (windows use the default statusline)
|
|
|
|
|
|
|
|
|
|
+------------------------------------------------------------------------------
|
|
|
|
|
+3.10 g:mundo_auto_preview *mundo_auto_preview*
|
|
|
|
|
+
|
|
|
|
|
+Set this to 0 to disable automatically rendering preview diffs as you move
|
|
|
|
|
+through the undo tree (you can still render a specific diff with r). This can
|
|
|
|
|
+be useful on large files and undo trees to speed up Mundo.
|
|
|
|
|
+
|
|
|
|
|
+Default: 1 (automatically preview diffs)
|
|
|
|
|
+
|
|
|
|
|
+------------------------------------------------------------------------------
|
|
|
|
|
+3.11 g:mundo_verbose_graph *mundo_verbose_graph*
|
|
|
|
|
+
|
|
|
|
|
+Set this to 0 to create shorter graphs: the 'o' characters will only be used
|
|
|
|
|
+when multiple branches exist, and extra lines of '|' are suppressed making for
|
|
|
|
|
+a graph half as long.
|
|
|
|
|
+
|
|
|
|
|
+Default: 1 (verbose graphs)
|
|
|
|
|
+
|
|
|
|
|
+------------------------------------------------------------------------------
|
|
|
|
|
+3.12 g:mundo_playback_delay *mundo_playback_delay*
|
|
|
|
|
+
|
|
|
|
|
+This is the delay in milliseconds between each change when running 'play to'
|
|
|
|
|
+mode. Set this to a higher number for a slower playback or to a lower number
|
|
|
|
|
+for a faster playback.
|
|
|
|
|
+
|
|
|
|
|
+Default: 60
|
|
|
|
|
+
|
|
|
|
|
+------------------------------------------------------------------------------
|
|
|
|
|
+3.13 g:mundo_mirror_graph *mundo_mirror_graph*
|
|
|
|
|
+
|
|
|
|
|
+Set this to 0 to align the graph to the left; set to 1 to align to the right.
|
|
|
|
|
+
|
|
|
|
|
+Default: 1 (mirror graph)
|
|
|
|
|
+
|
|
|
|
|
+------------------------------------------------------------------------------
|
|
|
|
|
+3.14 g:mundo_inline_graph *mundo_inline_undo*
|
|
|
|
|
+
|
|
|
|
|
+When enabled, a small one line diff is displayed to the right of the graph undo.
|
|
|
|
|
+Although not as detailed as a full diff provided in the preview window, it
|
|
|
|
|
+provides a quick summary of the diff w/o having to navigate.
|
|
|
|
|
+
|
|
|
|
|
+Default: 0 (no inline graph)
|
|
|
|
|
+
|
|
|
|
|
+------------------------------------------------------------------------------
|
|
|
|
|
+3.15 g:mundo_return_on_revert *mundo_return_on_revert*
|
|
|
|
|
+
|
|
|
|
|
+Set this to 0 to keep focus in the Mundo window after a revert.
|
|
|
|
|
+
|
|
|
|
|
+Default: 1
|
|
|
|
|
+
|
|
|
==============================================================================
|
|
==============================================================================
|
|
|
-4. License *GundoLicense*
|
|
|
|
|
|
|
+4. License *MundoLicense*
|
|
|
|
|
|
|
|
GPLv2+. Look it up.
|
|
GPLv2+. Look it up.
|
|
|
|
|
|
|
|
==============================================================================
|
|
==============================================================================
|
|
|
-5. Bugs *GundoBugs*
|
|
|
|
|
|
|
+5. Bugs *MundoBugs*
|
|
|
|
|
|
|
|
If you find a bug please post it on the issue tracker:
|
|
If you find a bug please post it on the issue tracker:
|
|
|
-http://bitbucket.org/sjl/gundo.vim/issues?status=new&status=open
|
|
|
|
|
|
|
+
|
|
|
|
|
+https://github.com/simnalamburt/vim-mundo/issues
|
|
|
|
|
|
|
|
==============================================================================
|
|
==============================================================================
|
|
|
-6. Contributing *GundoContributing*
|
|
|
|
|
|
|
+6. Contributing *MundoContributing*
|
|
|
|
|
|
|
|
Think you can make this plugin better? Awesome. Fork it on BitBucket or GitHub
|
|
Think you can make this plugin better? Awesome. Fork it on BitBucket or GitHub
|
|
|
and send a pull request.
|
|
and send a pull request.
|
|
|
|
|
|
|
|
-BitBucket: http://bitbucket.org/sjl/gundo.vim/
|
|
|
|
|
-GitHub: http://github.com/sjl/gundo.vim/
|
|
|
|
|
|
|
+GitHub: https://github.com/simnalamburt/vim-mundo
|
|
|
|
|
|
|
|
==============================================================================
|
|
==============================================================================
|
|
|
-7. Changelog *GundoChangelog*
|
|
|
|
|
-
|
|
|
|
|
|
|
+7. Changelog *MundoChangelog*
|
|
|
|
|
+
|
|
|
|
|
+v3.0.0
|
|
|
|
|
+ * Rename plugin
|
|
|
|
|
+ * Add one line diff in __Mundo__ window.
|
|
|
|
|
+ * Adds g:mundo_mirror_graph setting.
|
|
|
|
|
+ * Adds g:mundo_return_on_revert setting.
|
|
|
|
|
+ * Adds ability to toggle help on/off in __Mundo__ window.
|
|
|
|
|
+ * Adds J and K commands (navigate between written undos)
|
|
|
|
|
+ * Adds /, n and N commands (search undos)
|
|
|
|
|
+ * Adds g:mundo_verbose_graph setting.
|
|
|
|
|
+ * Adds g:mundo_mirror_graph setting.
|
|
|
|
|
+ * Show written undos in the Mundo graph.
|
|
|
|
|
+ * Adds live reload of Mundo as you edit.
|
|
|
|
|
+v2.5.0
|
|
|
|
|
+ * Fix the help window to take custom mappings into account.
|
|
|
|
|
+ * Add g:mundo_playback_delay option.
|
|
|
|
|
+v2.4.0
|
|
|
|
|
+ * Add auto preview option.
|
|
|
|
|
+ * Add 'r' mapping to preview current state.
|
|
|
|
|
+ * Add public mundo#MundoShow() and mundo#MundoHide() functions.
|
|
|
v2.3.0
|
|
v2.3.0
|
|
|
* Add statusline configuration.
|
|
* Add statusline configuration.
|
|
|
v2.2.2
|
|
v2.2.2
|
|
@@ -236,23 +312,23 @@ v2.2.2
|
|
|
v2.2.1
|
|
v2.2.1
|
|
|
* Refactoring and performance improvements.
|
|
* Refactoring and performance improvements.
|
|
|
v2.2.0
|
|
v2.2.0
|
|
|
- * Add the g:gundo_close_on_revert setting.
|
|
|
|
|
|
|
+ * Add the g:mundo_close_on_revert setting.
|
|
|
* Fix a bug with the splitbelow setting.
|
|
* Fix a bug with the splitbelow setting.
|
|
|
v2.1.1
|
|
v2.1.1
|
|
|
* Fix a bug with the movement key mappings.
|
|
* Fix a bug with the movement key mappings.
|
|
|
v2.1.0
|
|
v2.1.0
|
|
|
* Warnings about having an incompatible Vim and/or Python installation
|
|
* Warnings about having an incompatible Vim and/or Python installation
|
|
|
- are now deferred until the first time you try to use Gundo, instead
|
|
|
|
|
|
|
+ are now deferred until the first time you try to use Mundo, instead
|
|
|
of being displayed on launch.
|
|
of being displayed on launch.
|
|
|
* The <j> and <k> mappings are now configurable with
|
|
* The <j> and <k> mappings are now configurable with
|
|
|
- g:gundo_map_move_older and g:gundo_map_move_newer.
|
|
|
|
|
- * The o, <Up> and <Down> keys are now mapped in the Gundo pane.
|
|
|
|
|
- * Improve and add several unit tests for Gundo.
|
|
|
|
|
|
|
+ g:mundo_map_move_older and g:mundo_map_move_newer.
|
|
|
|
|
+ * The o, <Up> and <Down> keys are now mapped in the Mundo pane.
|
|
|
|
|
+ * Improve and add several unit tests for Mundo.
|
|
|
v2.0.0
|
|
v2.0.0
|
|
|
- * Make GundoToggle close the Gundo windows if they're visible but not the
|
|
|
|
|
|
|
+ * Make MundoToggle close the Mundo windows if they're visible but not the
|
|
|
current window, instead of moving to them.
|
|
current window, instead of moving to them.
|
|
|
- * Add the g:gundo_help setting.
|
|
|
|
|
- * Add the g:gundo_disable setting.
|
|
|
|
|
|
|
+ * Add the g:mundo_help setting.
|
|
|
|
|
+ * Add the g:mundo_disable setting.
|
|
|
* Add the 'p' mapping to preview the result of reverting to the selected
|
|
* Add the 'p' mapping to preview the result of reverting to the selected
|
|
|
state.
|
|
state.
|
|
|
* Fix movement commands with counts in the graph.
|
|
* Fix movement commands with counts in the graph.
|
|
@@ -260,7 +336,7 @@ v1.0.0
|
|
|
* Initial stable release.
|
|
* Initial stable release.
|
|
|
|
|
|
|
|
==============================================================================
|
|
==============================================================================
|
|
|
-8. Credits *GundoCredits*
|
|
|
|
|
|
|
+8. Credits *MundoCredits*
|
|
|
|
|
|
|
|
The graphing code was all taken from Mercurial, hence the GPLv2+ license.
|
|
The graphing code was all taken from Mercurial, hence the GPLv2+ license.
|
|
|
|
|
|