summaryrefslogtreecommitdiffstats
path: root/runtime/doc/todo.txt
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2023-04-23 20:26:59 -0500
committerChristian Brabandt <cb@256bit.org>2023-08-11 22:53:39 +0200
commit5fee11114975b7405b7ccd3ee8758e54bf559760 (patch)
treeae15baf50b45d4c5ad76714641b03c006b1ac70d /runtime/doc/todo.txt
parent422b9dcbfadcd5c1dfad982f9782563915398430 (diff)
patch 9.0.1686: undotree() only works for the current bufferv9.0.1686
Problem: undotree() only works for the current buffer Solution: Add an optional "buffer number" parameter to undotree(). If omitted, use the current buffer for backwards compatibility. closes: #4001 closes: #12292 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: zeertzjq <zeertzjq@outlook.com> Co-authored-by: Devin J. Pohly <djpohly@gmail.com>
Diffstat (limited to 'runtime/doc/todo.txt')
-rw-r--r--runtime/doc/todo.txt1
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 60903f922e..93c19b5140 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -5535,7 +5535,6 @@ Undo:
- Undo history wrong when ":next file" re-uses a buffer. (#5426) ex_next()
should pass flag to do_argfile(), then to do_ecmd(). Is there a test for
this?
-- Add buffer argument to undotree(). (#4001)
- Undo problem: "g-" doesn't go back, gets stuck. (Björn Linse, 2016 Jul 18)
- Undo message is not always properly displayed. Patch by Ken Takata, 2013
oct 3. Doesn't work properly according to Yukihiro Nakadaira.