comparison runtime/doc/todo.txt @ 6884:29c328f69aaa

Update help files.
author Bram Moolenaar <bram@vim.org>
date Fri, 26 Jun 2015 19:35:49 +0200
parents ee45d3b0579b
children 2def7b25de60
comparison
equal deleted inserted replaced
6883:dbebb11ee0e0 6884:29c328f69aaa
1 *todo.txt* For Vim version 7.4. Last change: 2015 Jun 19 1 *todo.txt* For Vim version 7.4. Last change: 2015 Jun 25
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
56 - New RE does not give an error for empty group: "\(\)\{2}" (Dominique Pelle, 56 - New RE does not give an error for empty group: "\(\)\{2}" (Dominique Pelle,
57 2015 Feb 7) 57 2015 Feb 7)
58 - Using back reference before the capturing group sometimes works with the old 58 - Using back reference before the capturing group sometimes works with the old
59 engine, can we do this with the new engine? E.g. with 59 engine, can we do this with the new engine? E.g. with
60 "/\%(<\1>\)\@<=.*\%(<\/\(\w\+\)>\)\@=" matching text inside HTML tags. 60 "/\%(<\1>\)\@<=.*\%(<\/\(\w\+\)>\)\@=" matching text inside HTML tags.
61 This problem is probably the same: "\%(^\1.*$\n\)\@<=\(\d\+\).*$".
62 (guotuofeng, 2015 Jun 22)
61 - Strange matching with "\(Hello\n\)\@<=A". (Anas Syed, 2015 Feb 12) 63 - Strange matching with "\(Hello\n\)\@<=A". (Anas Syed, 2015 Feb 12)
62 - Problem with \v(A)@<=b+\1c. (Issue 334) 64 - Problem with \v(A)@<=b+\1c. (Issue 334)
63 - Diff highlighting can be very slow. (Issue 309) 65 - Diff highlighting can be very slow. (Issue 309)
64 - Using %> for a virtual column has a check based on 'tabsize'. Better would 66 - Using %> for a virtual column has a check based on 'tabsize'. Better would
65 be to cache the result of win_linetabsize(col), storing both col and vcol, 67 be to cache the result of win_linetabsize(col), storing both col and vcol,
89 Using ":windo" to set options in all windows has the side effect that it 91 Using ":windo" to set options in all windows has the side effect that it
90 changes the window layout and the current window. Make a variant that saves 92 changes the window layout and the current window. Make a variant that saves
91 and restores. Use in the matchparen plugin. 93 and restores. Use in the matchparen plugin.
92 Perhaps we can use ":silent window"? 94 Perhaps we can use ":silent window"?
93 95
94 Patch for appending in Visual mode with 'linebreak' set.
95 (Christian Brabandt, 2015 Jun 1)
96
97 Patch to make CTRL-A in Visual mode increment all Visually selected numbers.
98 Same for decrement with CTRL-X. (Christian Brabandt, 2015 Jun 8)
99 Update Jun 9.
100
101 C indent: should recognize C11 raw strings. (Mark Lodato, 2015 Mar 1) 96 C indent: should recognize C11 raw strings. (Mark Lodato, 2015 Mar 1)
102 Need to recognize R"string" for 'cindent'. 97 Need to recognize R"string" for 'cindent'.
103 98
104 Updated phpcomplete. (Mikolaj Machowski, 2015 May 6) 99 Updated phpcomplete. (Mikolaj Machowski, 2015 May 6)
105 100
106 Patch to detect background terminal color in xterm. (Lubomir Rintel, 2015 Jun 101 Patch to make ":difoff" not reset the saved values, so that it can be used
107 1) 102 twice. (Olaf Dabrunz, 2015 Jun 21)
108
109 Patch to fix that in command-line window first character is erased
110 when conceallevel is set. (Hirohito Higashi, 2015 May 12)
111
112 Patch to make Lua 5.3 and later work. (Felix Schnizlein, 2015 Jun 11)
113
114 Patch to make \U in a string accept up to 8 characters. (Christian Brabandt,
115 2015 Jun 12) Does this break existing scripts?
116 103
117 Crash when changing the 'tags' option from a remote command. 104 Crash when changing the 'tags' option from a remote command.
118 (Benjamin Fritz, 2015 Mar 18, stack trace Mar 20) 105 (Benjamin Fritz, 2015 Mar 18, stack trace Mar 20)
119 106
120 Patch on issue 361.
121
122 Patch on issue 362.
123
124 Gvim: when both Tab and CTRL-I are mapped, use CTRL-I not for Tab. 107 Gvim: when both Tab and CTRL-I are mapped, use CTRL-I not for Tab.
125 108
126 Can src/GvimExt/Make_cyg.mak be removed? 109 Can src/GvimExt/Make_cyg.mak be removed?
127 Same for src/xxd/Make_cyg.mak 110 Same for src/xxd/Make_cyg.mak
128 111
131 MS-Windows: When editing a file with a leading space, writing it uses the 114 MS-Windows: When editing a file with a leading space, writing it uses the
132 wrong name. (Aram, 2014 Nov 7) Vim 7.4. 115 wrong name. (Aram, 2014 Nov 7) Vim 7.4.
133 116
134 Can't recognize the $ProgramFiles(x86) environment variable. Recognize it 117 Can't recognize the $ProgramFiles(x86) environment variable. Recognize it
135 specifically? First try with the parens, then without. 118 specifically? First try with the parens, then without.
136
137 Patch to force redraw after ":syn spell" command. (Christian, 2015 May 8)
138 119
139 Patch for multi-byte characters in langmap and applying a mapping on them. 120 Patch for multi-byte characters in langmap and applying a mapping on them.
140 (Christian Brabandt, 2015 Jun 12) 121 (Christian Brabandt, 2015 Jun 12)
141 Is this the right solution? 122 Is this the right solution?
142 123
152 133
153 Value returned by virtcol() changes depending on how lines wrap. This is 134 Value returned by virtcol() changes depending on how lines wrap. This is
154 inconsistent with the documentation. 135 inconsistent with the documentation.
155 136
156 Better greek spell checking. Issue 299. 137 Better greek spell checking. Issue 299.
138
139 Patch to make :diffoff work twice. (Olaf Dabrunz, 2015 Jun 23)
157 140
158 Patch to add 'completeselect' option. Specifies how to select a candidate in 141 Patch to add 'completeselect' option. Specifies how to select a candidate in
159 insert completion. (Shougo, 2013 May 29) 142 insert completion. (Shougo, 2013 May 29)
160 Update to add to existing 'completeopt'. 2013 May 30 143 Update to add to existing 'completeopt'. 2013 May 30
161 Updated update: Shougo 2015 Jun 12 144 Updated update: Shougo 2015 Jun 12
204 187
205 Patch for an extra argument to matchadd() for conceal. (Christian Brabandt, 188 Patch for an extra argument to matchadd() for conceal. (Christian Brabandt,
206 2015 Feb 17, update Feb 19) 189 2015 Feb 17, update Feb 19)
207 190
208 Patch to add v:completed_item. (Shougo Matsu, 2013 Nov 29). 191 Patch to add v:completed_item. (Shougo Matsu, 2013 Nov 29).
209 Update 2015 May 30. 192 Update 2015 Jun 20.
210 193
211 Patch to add :lockjumps. (Carlo Baldassi, 2015 May 25) 194 Patch to add :lockjumps. (Carlo Baldassi, 2015 May 25)
212 OK to not block marks? 195 OK to not block marks?
213 196
214 Mixup of highlighting when there is a match and SpellBad. (ZyX, 2015 Jan 1) 197 Mixup of highlighting when there is a match and SpellBad. (ZyX, 2015 Jan 1)