1- *todo.txt* For Vim version 8.0. Last change: 2017 Jan 16
1+ *todo.txt* For Vim version 8.0. Last change: 2017 Jan 28
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -35,8 +35,6 @@ entered there will not be repeated below, unless there is extra information.
3535 *known-bugs*
3636-------------------- Known bugs and current work -----------------------
3737
38- get_syn_options() does not respect skip in else part. (Zyx)
39-
4038+channel:
4139- Try out background make plugin:
4240 https://github.com/AndrewVos/vim-make-background
@@ -60,6 +58,7 @@ get_syn_options() does not respect skip in else part. (Zyx)
6058 connecting in the main loop with zero timeout.
6159- job_start(): run job in a newly opened terminal.
6260 With xterm could use -S{pty} .
61+ Although user could use "xterm -e 'cmd arg'".
6362
6463Regexp problems:
6564- Since 7.4.704 the old regex engine fails to match [[:print:]] in 0xf6.
@@ -108,40 +107,27 @@ Regexp problems:
108107
109108'] mark invalid after undoing insert "hello".
110109
111- Make html indent file use javascript indent, now that it's not just cindent.
112- #1220
113-
114- Concatenation with null string causes an error: 'a'[1:0] .. 'b'
115- Might as well handle it like an empty string.
116-
117110When using symbolic links, a package path will not be inserted at the right
118111position in 'runtimepath' . (Dugan Chen, 2016 Nov 18)
119112
120113json_encode(): should convert to utf-8. (Nikolai Pavlov, 2016 Jan 23)
121114What if there is an invalid character?
122115
123- Include rust files. (Klabnik, #1356)
124-
125116Allow using json with empty key? Dict already has it.
126117
127118Json string with trailing \u should be an error. (Lcd)
128119
129- Patch to deal with changed configure events in GTK 3. (Jan Alexander Steffens,
130- 2016 Oct 23 #1193)
131- Remarks from nuko8, 2016 Nov 2.
132-
133120Multi-byte bug: dv} splits char. (Urtica Dioica, 2017 Jan 9)
134121
135- Patch to change order of compiler flags. (Yousong Zhou, 2016 Sep 19, #1100)
122+ Patch: Make mode() return "ix" or "Rx" when in completion mode.
123+ (Yegappan Lakshmanan, 2017 Jan 19, #1397, update Jan 22)
136124
137- Patch to add command line completion for :cexpr commands. (Yegappan
138- Lakshmanan, 2016 Dec 13)
125+ With Visual selection of a multi-byte character the '] mark is on the last
126+ byte, should be first byte?
139127
140- Patch for :pyx, run python commands depending on the supported version.
141- (Marc Weber, update from Ken Takata, 2016 Sep 19, 2017 Jan 6)
142-
143- Patch to avoid warnings for overflow. (Mike Williams, 2016 Dec 16)
144- Update Dec 19.
128+ When session file has name in argument list but the buffer was deleted, the
129+ buffer is not deleted when using the session file. (#1393)
130+ Should add the buffer in hidden state.
145131
146132When an item in the quickfix list has a file name that does not exist, behave
147133like the item was not a match for :cnext.
@@ -150,18 +136,13 @@ Wrong diff highlighting with three files. (2016 Oct 20, #1186)
150136Also get E749 on exit.
151137Another example in #1309
152138
153- Patch to fix vim_iswordp() works differently on chars <256 that are two bytes.
154- Ozaki Kiichi, 2016 Dec 11.
139+ Completion for user-defined commands does not work if a few chararacters were
140+ already typed. (Dominique, 2017 Jan 26)
155141
156142When deleting a mark or register, leave a tombstone, so that it's also deleted
157143when writing viminfo (and the delete was the most recent action). #1339
158144
159145Relevant neovim patch:
160- https://github.com/neovim/neovim/pull/5717
161- test case:
162- https://github.com/neovim/neovim/pull/5717#issuecomment-264845481
163- Others:
164- https://github.com/neovim/neovim/issues/5713#issuecomment-265136186
165146https://github.com/neovim/neovim/pull/5737#issuecomment-266055165
166147
167148Patch for better explanation of 'compatible' side effects.
@@ -199,6 +180,10 @@ Patch for restoring wide characters in the console buffer.
199180Patch to fix escaping of job arguments. (Yasuhiro Matsumoto, 2016 Oct 5)
200181Update Oct 14: https://gist.github.com/mattn/d47e7d3bfe5ade4be86062b565a4bfca
201182
183+ The TermResponse event is not triggered when a plugin has set 'eventignore' to
184+ "all". Netrw does this. (Gary Johnson, 2017 Jan 24)
185+ Postpone the event until 'eventignore' is reset.
186+
202187Once .exe with updated installer is available: Add remark to download page
203188about /S and /D options (Ken Takata, 2016 Apr 13)
204189Or point to nightly builds: https://github.com/vim/vim-win32-installer/releases
@@ -220,6 +205,7 @@ lines: :g/^/normal yyp On Unix it works OK. (Bryce Orgill, 2016 Nov 5)
220205
221206Patch for wrong cursor position on wrapped line, involving breakindent.
222207(Ozaki Kiichi, 2016 Nov 25)
208+ Does this also fix #1408 ?
223209
224210Patch for 'cursorlinenr' option. (Ozaki Kiichi, 2016 Nov 30)
225211
@@ -569,6 +555,9 @@ Patch to add :mapgroup, put mappings in a group like augroup.
569555Value returned by virtcol() changes depending on how lines wrap. This is
570556inconsistent with the documentation.
571557
558+ Value of virtcol() for '[ and '] depend on multi-byte character.
559+ (Luchr, #277)
560+
572561Can we cache the syntax attributes, so that updates for 'relativenumber' and
573562'cursorline' /'cursorcolumn' are a lot faster?
574563
@@ -1061,9 +1050,6 @@ Aug 16)
10611050When there are no command line arguments ":next" and ":argu" give E163, which
10621051is confusing. Should say "the argument list is empty".
10631052
1064- xterm supports escape sequences to mark a paste operation. Need to be
1065- enabled. (Bruno Sutic, 2014 Jul 11) How to know the terminal supports this?
1066-
10671053URXVT:
10681054- will get stuck if byte sequence does not contain the expected semicolon.
10691055- Use urxvt mouse support also in xterm. Explanations:
0 commit comments