|
1 | | -*todo.txt* For Vim version 8.0. Last change: 2017 Apr 09 |
| 1 | +*todo.txt* For Vim version 8.0. Last change: 2017 Apr 23 |
2 | 2 |
|
3 | 3 |
|
4 | 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
@@ -38,6 +38,10 @@ entered there will not be repeated below, unless there is extra information. |
38 | 38 | Remove the Farsi code? |
39 | 39 |
|
40 | 40 | +channel: |
| 41 | +- job_stop() should not always close the channel, e.g. for "int". |
| 42 | + (Martin Gammelsæter, 2017 Apr 11, #1632) |
| 43 | + Only assume killed on "kill". |
| 44 | + Check job->jv_status not to be JOB_ENDED. |
41 | 45 | - Try out background make plugin: |
42 | 46 | https://github.com/AndrewVos/vim-make-background |
43 | 47 | - Problem with stderr on Windows? (Vincent Rischmann, 2016 Aug 31, #1026) |
@@ -112,6 +116,10 @@ manager. Problem with Motif? |
112 | 116 |
|
113 | 117 | Memory leak in test97? The string is actually freed. Weird. |
114 | 118 |
|
| 119 | +Patch for flickering redraw. (Hirohito Higashi, 2017 Apr 23, #1637) |
| 120 | + |
| 121 | +New value "uselast" for 'switchbuf'. (Lemonboy, 2017 Apr 23, #1652) |
| 122 | + |
115 | 123 | Add a toolbar in the terminal. Can be global, above all windows, or specific |
116 | 124 | for one window. |
117 | 125 | Use tb_set(winid, [{'text': 'stop', 'cb': callback, 'hi': 'Green'}]) |
@@ -193,13 +201,18 @@ Patch for restoring wide characters in the console buffer. |
193 | 201 | Patch to fix escaping of job arguments. (Yasuhiro Matsumoto, 2016 Oct 5) |
194 | 202 | Update Oct 14: https://gist.github.com/mattn/d47e7d3bfe5ade4be86062b565a4bfca |
195 | 203 |
|
| 204 | +Characters deleted on completion. (Adrià Farrés, 2017 Apr 20, #1645) |
| 205 | +Remarks from Christian Brabandt (Apr 21) |
| 206 | + |
196 | 207 | The TermResponse event is not triggered when a plugin has set 'eventignore' to |
197 | 208 | "all". Netrw does this. (Gary Johnson, 2017 Jan 24) |
198 | 209 | Postpone the event until 'eventignore' is reset. |
199 | 210 |
|
200 | 211 | Patch to make urxvt mouse work better, recognize Esc[*M termcap code. |
201 | 212 | (Maurice Bos, 2017 Feb 17, #1486) |
202 | 213 |
|
| 214 | +Expanding /**/ is slow. Idea by Luc Hermitte, 2017 Apr 14. |
| 215 | + |
203 | 216 | Once .exe with updated installer is available: Add remark to download page |
204 | 217 | about /S and /D options (Ken Takata, 2016 Apr 13) |
205 | 218 | Or point to nightly builds: https://github.com/vim/vim-win32-installer/releases |
@@ -277,11 +290,21 @@ Patch to add "cmdline" completion to getcompletion(). (Shougo, Oct 1, #1140) |
277 | 290 | Feature request: Complete members of a dictionary. (Luc Hermitte, 2017 Jan 4, |
278 | 291 | #1350) |
279 | 292 |
|
| 293 | +Undo message is not always properly displayed. Patch by Ken Takata, 2013 oct |
| 294 | +3. Doesn't work properly according to Yukihiro Nakadaira. |
| 295 | +Also see #1635. |
| 296 | + |
280 | 297 | Patch for systemlist(), add empty item. (thinca, Sep 30, #1135) |
281 | 298 | Add an argument to choose binary or non-binary (like readfile()), when omitted |
282 | 299 | use the current behavior. |
283 | 300 | Include the test. |
284 | 301 |
|
| 302 | +Patch to add tagfunc(). Cleaned up by Christian Brabandt, 2013 Jun 22. |
| 303 | +New update 2017 Apr 10, #1628 |
| 304 | + |
| 305 | +Unnamed register only contains the last deleted text when appending deleted |
| 306 | +text to a register. (Wolfgang Jeltsch, reproduced by Ben Fritz, 2017 Apr 10) |
| 307 | + |
285 | 308 | When 'keywordprg' starts with ":" the argument is still escaped as a shell |
286 | 309 | command argument. (Romain Lafourcade, 2016 Oct 16, #1175) |
287 | 310 |
|
@@ -895,9 +918,6 @@ Patch to handle integer overflow. (Aaron Burrow, 2013 Dec 12) |
895 | 918 | Patch to add "ntab" item in 'listchars' to repeat first character. (Nathaniel |
896 | 919 | Braun, pragm, 2013 Oct 13) A better solution 2014 Mar 5. |
897 | 920 |
|
898 | | -Undo message is not always properly displayed. Patch by Ken Takata, 2013 oct |
899 | | -3. Doesn't work properly according to Yukihiro Nakadaira. |
900 | | - |
901 | 921 | /[b-a] gives error E16, should probably be E769. |
902 | 922 |
|
903 | 923 | 7 Windows XP: When using "ClearType" for text smoothing, a column of yellow |
@@ -1062,8 +1082,6 @@ MS-Windows resizing problems: |
1062 | 1082 | Patch to append regexp to tag commands to make it possible to select one out |
1063 | 1083 | of many matches. (Cody Cutler, 2013 Mar 28) |
1064 | 1084 |
|
1065 | | -Patch to add tagfunc(). Cleaned up by Christian Brabandt, 2013 Jun 22. |
1066 | | - |
1067 | 1085 | The input map for CTRL-O in mswin.vim causes problems after CTRL-X CTRL-O. |
1068 | 1086 | Suggestion for another map. (Philip Mat, 2012 Jun 18) |
1069 | 1087 | But use "gi" instead of "a". Or use CTRL-\ CTRL-O. |
|
0 commit comments