comparison runtime/doc/todo.txt @ 18790:8dde7ced3344

Update a few runtime files Commit: https://github.com/vim/vim/commit/4ceaa3a6e0b8cb2994c303041aedcbb60527cd61 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 3 22:49:09 2019 +0100 Update a few runtime files
author Bram Moolenaar <Bram@vim.org>
date Tue, 03 Dec 2019 23:00:06 +0100
parents 82a28df1e2d5
children 5c40013d45ee
comparison
equal deleted inserted replaced
18789:bea2e4dfc6d7 18790:8dde7ced3344
1 *todo.txt* For Vim version 8.1. Last change: 2019 Nov 30 1 *todo.txt* For Vim version 8.1. Last change: 2019 Dec 03
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
145 (Also #1890) 145 (Also #1890)
146 146
147 Adding "10" to 'spellsuggest' causes spell suggestions to become very slow. 147 Adding "10" to 'spellsuggest' causes spell suggestions to become very slow.
148 (#4087) 148 (#4087)
149 149
150 Instead of using a syntax error, use #error to fail early when something is
151 wrong. E.g. in vim.h "Error:", and blowfish.c "error!". (#5299)
152
150 ":helptags ALL" should skip directories where "tags" cannot be written. 153 ":helptags ALL" should skip directories where "tags" cannot be written.
151 (Matěj Cepl, #5026) 154 (Matěj Cepl, #5026)
152 155
153 ":bnext" in a help buffer is supposed to go to the next help buffer, but it 156 ":bnext" in a help buffer is supposed to go to the next help buffer, but it
154 goes to any buffer, and then :bnext skips help buffers, since they are 157 goes to any buffer, and then :bnext skips help buffers, since they are
195 13, #2910) Can't reproduce? 198 13, #2910) Can't reproduce?
196 199
197 Patch to configure BUILD_DATE for reproducible builds. (James McCoy, #513) 200 Patch to configure BUILD_DATE for reproducible builds. (James McCoy, #513)
198 201
199 Patch to add MODIFIED_BY to MSVC build file. (Chen Lei, 2016 Nov 24, #1275) 202 Patch to add MODIFIED_BY to MSVC build file. (Chen Lei, 2016 Nov 24, #1275)
203
204 Patch to support "0o" for octal numbers. (Ken Takata, #5304)
205
206 ":cexpr" sees a | in the expression as the start of the next command. Should
207 remove the "BAR" flag from the command and let the command search for the next
208 command after parsing the expression.
209
210 When getting a focus event halfway a mapping this aborts the mapping. E.g.
211 when "qq" is mapped and after the first "q" the mouse is moved outside of the
212 gvim window (with focus follows mouse), then the K_FOCUSLOST key is put in the
213 input buffer. (#5302)
200 214
201 xterm should be able to pass focus changes to Vim, so that Vim can check for 215 xterm should be able to pass focus changes to Vim, so that Vim can check for
202 buffers that changed. Perhaps in misc.c, function selectwindow(). 216 buffers that changed. Perhaps in misc.c, function selectwindow().
203 Xterm 224 supports it! 217 Xterm 224 supports it!
204 Patch to make FocusGained and FocusLost work in modern terminals. (Hayaki 218 Patch to make FocusGained and FocusLost work in modern terminals. (Hayaki
259 same thing. Remarks on PR #543 (Roland Puntaier). 273 same thing. Remarks on PR #543 (Roland Puntaier).
260 Also see #737: langmap not applied to replaying recording. 274 Also see #737: langmap not applied to replaying recording.
261 275
262 Would be nice to set tab-local values for 'diffexpr' and 'diffopt'. Use 276 Would be nice to set tab-local values for 'diffexpr' and 'diffopt'. Use
263 t:diffexpr_option t:diffopt_option? (#4782) 277 t:diffexpr_option t:diffopt_option? (#4782)
278
279 v:register isn't reset early enough, may be used by next command.
280 (Andy Massimino, #5294, possible fix in #5305)
264 281
265 Internal diff doesn't handle binary file like external diff does. (Mike 282 Internal diff doesn't handle binary file like external diff does. (Mike
266 Williams, 2018 Oct 30) 283 Williams, 2018 Oct 30)
267 284
268 '[ mark in wrong column after put. (#4776) 285 '[ mark in wrong column after put. (#4776)