summaryrefslogtreecommitdiffstats
path: root/runtime/doc/todo.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-11-09 21:21:04 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-09 21:21:04 +0000
commit76db9e076318cb0ae846f43b7549ad4f2d234c0b (patch)
treec95eed792e5ed22eb9d632fd2a9eb2344f662d12 /runtime/doc/todo.txt
parent0fd7be7f951b639312c9cb3917c7e61ba3b55a60 (diff)
Update runtime files
Diffstat (limited to 'runtime/doc/todo.txt')
-rw-r--r--runtime/doc/todo.txt23
1 files changed, 22 insertions, 1 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index e1971b6865..ff59a20286 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 9.0. Last change: 2022 Oct 28
+*todo.txt* For Vim version 9.0. Last change: 2022 Nov 09
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -38,6 +38,8 @@ browser use: https://github.com/vim/vim/issues/1234
*known-bugs*
-------------------- Known bugs and current work -----------------------
+Add test for what 9.0.0827 fixes - '@' in termcap key code
+
'smoothscroll':
- CTRL-E and gj in long line with 'scrolloff' 5 not working well yet.
- computing 'scrolloff' position row use w_skipcol
@@ -176,6 +178,8 @@ reduced?
Add BufDeletePost. #11041
+Add winid arg to col() and charcol() #11466 (request #11461)
+
Test property disappears when using CR twice in a row. OK when some text was
entered. (#11151)
@@ -183,6 +187,10 @@ NFA regexp does not handle composing characters well: #10286
[ɔ̃] matches both ɔ and ɔ̃
\(ɔ\|ɔ̃\) matches ɔ and not ɔ̃
+Is there a way to make 'autowriteall' make a clean exit when the xterm is
+closed? (Dennis Nazic says files are preserved, okt 28). Perhaps handle TERM
+like HUP?
+
Improvement in terminal configuration mess: Request the terminfo entry from
the terminal itself. The $TERM value then is only relevant for whether this
feature is supported or not. Replaces the xterm mechanism to request each
@@ -191,6 +199,16 @@ Multiplexers (screen, tmux) can request it to the underlying terminal, and
pass it on with modifications.
How to get all the text quickly (also over ssh)? Can we use a side channel?
+Horizontal mouse scroll only works when compiled with GUI? #11374
+
+In the libvterm fork properly implement:
+- modifyOtherKeys 2 - follow xterm implementation as close as possible, that
+ is the reference.
+- Kitty key protocol - just like the latest Kitty
+So that in TermDebug the key handling can be stepped through (instead of
+having to log messages all over the place to see what happens).
+Ask Leonerd about location of code, he might want to take over some of it.
+
Using "A" and "o" in manually created fold (in empty buffer) does not behave
consistenly (James McCoy, #10698)
@@ -301,6 +319,9 @@ when redirecting to a local variable (function or script) storing the value
won't work. At least give an error. Is there a way to make it work?
#10616
+Completion for ":runtime" should show valid values, not what's in the current
+directory. (#11447)
+
Add an option to start_timer() to return from the input loop with K_IGNORE.
This is useful e.g. when a popup was created that disables mappings, we need
to return from vgetc() to make this happen. #7011