Hi
Hopefully this is not too nitpicky: using Vim-7.3.87 and typing :undol
I see this kind of output:
:undol
number changes when saved
3 3 10/30 20:28:39
5 4 10/30 20:28:43
24 22 12/17 18:42:02 6
Output example in ":help undol" looks different:
- 3rd column says "time" instead of "when"
- alignment is also different.
"time" was changed to "when" in patch 7.3.048 but help file was
not updated accordingly. Attached patch updates help file.
Regards
-- Dominique
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
diff -r bfade53bcafb runtime/doc/undo.txt
--- a/runtime/doc/undo.txt Fri Dec 17 20:24:01 2010 +0100
+++ b/runtime/doc/undo.txt Sun Dec 19 13:07:47 2010 +0100
@@ -125,16 +125,17 @@
*:undol* *:undolist*
:undol[ist] List the leafs in the tree of changes. Example:
- number changes time saved ~
- 4 10 10:34:11
- 18 4 11:01:46 7
+ number changes when saved ~
+ 4 10 10:34:11
+ 18 4 11:01:46 7
The "number" column is the change number. This number
continuously increases and can be used to identify a
specific undo-able change, see |:undo|.
The "changes" column is the number of changes to this
leaf from the root of the tree.
- The "time" column is the time this change was made.
+ The "when" column is the date and time when this
+ change was made.
The "saved" column specifies, if this change was
written to disk and which file write it was. This can
be used with the |:later| and |:earlier| commands.