1- *todo.txt* For Vim version 8.2. Last change: 2020 Feb 15
1+ *todo.txt* For Vim version 8.2. Last change: 2020 Feb 25
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -38,15 +38,20 @@ browser use: https://github.com/vim/vim/issues/1234
3838 *known-bugs*
3939-------------------- Known bugs and current work -----------------------
4040
41- Include ipv6 syntax changes? (DJ Lucas, #5360)
42-
43- Avoid modifyOtherKeys temporarily:
44- call modify_other_keys(v:false) " disable modifyOtherKeys
45- Should fix #5617.
41+ Patch for this (#5696):
42+ - Empty text prop which includes start/end does not grow when inserting text.
43+ (Axel Forsman, #5679)
4644
4745Vim9 script:
46+ - "func" inside "vim9script" doesn't work? (Ben Jackson, #5670)
47+ - Completion for :disassemble
4848- "echo Func()" is an error if Func() does not return anything.
49+ - Make "g:imported = Export.exported" work in Vim9 script.
50+ - Make Foo.Bar() work to call the dict function. (#5676)
51+ - make "let var: string" work in a vim9script.
4952- Disallow unlet for local/script/imported vars
53+ - Support type for ":let"/":const" at script level for Vim9 script.
54+ (Ben Jackson, #5671)
5055- :func inside vim9script must still use a:arg
5156- Make "++nr" work.
5257- Check that import in legacy script works and puts item in s:
@@ -79,20 +84,25 @@ Vim9 script:
7984 LOADVARARG (varags idx)
8085
8186Popup windows:
87+ - With terminal in popup, allow for popup_hide() to temporarily hide it.?
8288- Use popup (or popup menu) for command line completion
8389- When using a popup for the info of a completion menu, and there is not
8490 enough space, let the popup overlap with the menu. (#4544)
8591- Implement flip option.
8692- Make redrawing more efficient and avoid flicker:
8793 - put popup menu also in popup_mask?
94+ - Match does not have right BG color if line length equals popup width.
95+ (#5658)
8896- Any other commands to disable in a popup window?
8997 Use ERROR_IF_POPUP_WINDOW for these.
9098- Figure out the size and position better if wrapping inserts indent
9199
92100Text properties:
101+ - prop_find() may not find text property at start of the line. (#5663)
102+ - Get E685 with a sequence of commands. (#5674)
93103- Combining text property with 'cursorline' does not always work (Billie
94104 Cleek, #5533)
95- - Text properties spanning more than one line
105+ - Text properties spanning more than one line. #5683
96106- See remarks at top of src/textprop.c
97107
98108'incsearch' with :s:
@@ -161,14 +171,17 @@ Error numbers available:
161171E451, E452, E453, E454, E460, E489, E491, E565, E578, E610, E611, E653,
162172E654, E856, E857, E860, E861, E900
163173
164- Patch to move duplicated code to a function. (Yegappan Lakshmanan, #5330)
174+ Patch to fix drawing error with DirectX. (James Grant, #5688)
175+ Causes flicker on resizing.
165176
166177Patch to use more FOR_ALL_ macros and use them. (Yegappan Lakshmanan, #5339)
167178
168- Patch to explain use of "%" in :!. (#5591)
179+ Patch to explain use of "%" in :!. (David Briscoe, #5591)
169180
170181Patch to add "-d" to xxd. (#5616)
171182
183+ Patch to add Turkish manual. (Emir Sarı, #5641)
184+
172185Running test_gui and test_gui_init with Motif sometimes kills the window
173186manager. Problem with Motif? Now test_gui crashes in submenu_change().
174187Athena is OK.
@@ -187,6 +200,11 @@ undo result wrong: Masato Nishihata, #4798
187200When 'lazyredraw' is set sometimes the title is not updated.
188201(Jason Franklin, 2020 Feb 3) Looks like a race condition.
189202
203+ Strange sequence of BufWipeout and BufNew events while doing omni-complete.
204+ (Paul Jolly, #5656)
205+ Get BufDelete without preceding BufNew. (Paul Jolly, #5694)
206+ BufWinenter event not fired when saving unnamed buffer. (Paul Jolly, #5655)
207+
190208Patch to add function to return the text used in the quickfix window.
191209(Yegappan, #5465)
192210
@@ -203,11 +221,6 @@ Undo puts cursor in wrong line after "cG<Esc>" undo.
203221:unmap <c-n> gives error but does remove the mapping. (Antony Scriven, 2019
204222Dec 19)
205223
206- Dos uninstal may delete vim.bat from the wrong directory (e.g., when someone
207- makes his own wrapper). Add a magic string with the version number to the
208- .bat file and check for it in the uninstaller. E.g.
209- # uninstall key: vim8.1*
210-
211224Patch to fix session file when using multiple tab pages. (Jason Franklin, 2019
212225May 20)
213226Also put :argadd commands at the start for all buffers, so that their order
@@ -230,6 +243,8 @@ Should do current file first and not split it up when more results are found.
230243Undo history wrong when ":next file" re-uses a buffer. (#5426)
231244ex_next() should pass flag to do_argfile(), then to do_ecmd().
232245
246+ Patch to add "note" type to quickfix. (#5527) Missing tests.
247+
233248Adding "10" to 'spellsuggest' causes spell suggestions to become very slow.
234249(#4087)
235250
@@ -238,9 +253,6 @@ match, total matches). (#5631)
238253Patch to provide search stats in a variable, so that it can be used in the
239254statusline. (Fujiwara Takuya, #4446)
240255
241- ":helptags ALL" should skip directories where "tags" cannot be written.
242- (Matěj Cepl, #5026)
243-
244256":bnext" in a help buffer is supposed to go to the next help buffer, but it
245257goes to any buffer, and then :bnext skips help buffers, since they are
246258unlisted. (#4478)
@@ -302,6 +314,8 @@ Does not build with MinGW out of the box:
302314Crash when mixing matchadd and substitute()? (Max Christian Pohle, 2018 May
30331513, #2910) Can't reproduce?
304316
317+ Display messed up with matchparen, wrapping and scrolling. (#5638)
318+
305319Patch to configure BUILD_DATE for reproducible builds. (James McCoy, #513)
306320
307321Patch to add MODIFIED_BY to MSVC build file. (Chen Lei, 2016 Nov 24, #1275)
0 commit comments