comparison runtime/doc/todo.txt @ 19574:d4deb2e50667

Update runtime files Commit: https://github.com/vim/vim/commit/eab6dff19f387469a200011bc6cf3508f5e43a4a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 1 19:06:45 2020 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Mar 2020 19:15:04 +0100
parents a7a24d06d7ce
children 847a300aa244
comparison
equal deleted inserted replaced
19573:9d0db06b6ad2 19574:d4deb2e50667
1 *todo.txt* For Vim version 8.2. Last change: 2020 Feb 25 1 *todo.txt* For Vim version 8.2. Last change: 2020 Mar 01
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
36 browser use: https://github.com/vim/vim/issues/1234 36 browser use: https://github.com/vim/vim/issues/1234
37 (replace 1234 with the issue/pull number) 37 (replace 1234 with the issue/pull number)
38 *known-bugs* 38 *known-bugs*
39 -------------------- Known bugs and current work ----------------------- 39 -------------------- Known bugs and current work -----------------------
40 40
41 Patch for this (#5696):
42 - Empty text prop which includes start/end does not grow when inserting text.
43 (Axel Forsman, #5679)
44
45 Vim9 script: 41 Vim9 script:
42 - better implementation for partial and tests.
46 - "func" inside "vim9script" doesn't work? (Ben Jackson, #5670) 43 - "func" inside "vim9script" doesn't work? (Ben Jackson, #5670)
47 - Completion for :disassemble
48 - "echo Func()" is an error if Func() does not return anything. 44 - "echo Func()" is an error if Func() does not return anything.
49 - Make "g:imported = Export.exported" work in Vim9 script. 45 - Make "g:imported = Export.exported" work in Vim9 script.
50 - Make Foo.Bar() work to call the dict function. (#5676) 46 - Make Foo.Bar() work to call the dict function. (#5676)
51 - make "let var: string" work in a vim9script. 47 - make "let var: string" work in a vim9script.
52 - Disallow unlet for local/script/imported vars 48 - Disallow unlet for local/script/imported vars
191 Flag in 'formatoptions' is not used in the tests. 187 Flag in 'formatoptions' is not used in the tests.
192 188
193 Patch to add 'vtp' option. (#5344) 189 Patch to add 'vtp' option. (#5344)
194 Needs better docs. Is there a better name? 190 Needs better docs. Is there a better name?
195 191
196 Patch for Haiku support. (Emir Sarı, #5605)
197
198 undo result wrong: Masato Nishihata, #4798 192 undo result wrong: Masato Nishihata, #4798
199 193
200 When 'lazyredraw' is set sometimes the title is not updated. 194 When 'lazyredraw' is set sometimes the title is not updated.
201 (Jason Franklin, 2020 Feb 3) Looks like a race condition. 195 (Jason Franklin, 2020 Feb 3) Looks like a race condition.
202 196
203 Strange sequence of BufWipeout and BufNew events while doing omni-complete. 197 Strange sequence of BufWipeout and BufNew events while doing omni-complete.
204 (Paul Jolly, #5656) 198 (Paul Jolly, #5656)
205 Get BufDelete without preceding BufNew. (Paul Jolly, #5694) 199 Get BufDelete without preceding BufNew. (Paul Jolly, #5694)
206 BufWinenter event not fired when saving unnamed buffer. (Paul Jolly, #5655) 200 BufWinenter event not fired when saving unnamed buffer. (Paul Jolly, #5655)
201 Another spurious BufDelete. (Dani Dickstein, #5701)
207 202
208 Patch to add function to return the text used in the quickfix window. 203 Patch to add function to return the text used in the quickfix window.
209 (Yegappan, #5465) 204 (Yegappan, #5465)
210 205
211 Patch for Template string: #4491. New pull: #4634 206 Patch for Template string: #4491. New pull: #4634