comparison runtime/doc/todo.txt @ 408:06234af3a8b7 v7.0106

updated for version 7.0106
author vimboss
date Sat, 09 Jul 2005 21:14:46 +0000
parents cf83dacfa25f
children c60ba877860b
comparison
equal deleted inserted replaced
407:0f6afaf1b8d1 408:06234af3a8b7
1 *todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 08 1 *todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 09
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
27 See |develop.txt| for development plans. You can vote for which items should 27 See |develop.txt| for development plans. You can vote for which items should
28 be worked on, but only if you sponsor Vim development. See |sponsor|. 28 be worked on, but only if you sponsor Vim development. See |sponsor|.
29 29
30 *known-bugs* 30 *known-bugs*
31 -------------------- Known bugs and current work ----------------------- 31 -------------------- Known bugs and current work -----------------------
32
33 9 Editing a XML file with a long line is extremely slow. Example file from
34 Randy Parker (Dec 13). Editing the dictionaries for engspchk plugin with
35 syntax highlighting is also very slow.
36 Limit the searching for items to a few hundred characters?
32 37
33 Add extra list of file locations. Can be used with: 38 Add extra list of file locations. Can be used with:
34 :ltag list of matching tags, like :tselect 39 :ltag list of matching tags, like :tselect
35 40
36 :lnext next location 41 :lnext next location
860 tee.exe from http://unxutils.sourceforge.net/ ? About 16 Kbyte in the 865 tee.exe from http://unxutils.sourceforge.net/ ? About 16 Kbyte in the
861 UnxUtils.zip archive. 866 UnxUtils.zip archive.
862 Alternate one: http://www.pramodx.20m.com/tee_for_win32.htm, but Walter 867 Alternate one: http://www.pramodx.20m.com/tee_for_win32.htm, but Walter
863 Briscoe says it's not as good. 868 Briscoe says it's not as good.
864 8 'fillchars' doesn't work for multi-byte characters. 869 8 'fillchars' doesn't work for multi-byte characters.
865 9 Editing a XML file with a long line is extremely slow. Example file from
866 Randy Parker (Dec 13). Editing the dictionaries for engspchk plugin with
867 syntax highlighting is also very slow.
868 Limit the searching for items to a few hundred characters?
869 8 Command line completion: buffers "foo.txt" and "../b/foo.txt", completing 870 8 Command line completion: buffers "foo.txt" and "../b/foo.txt", completing
870 ":buf foo<Tab>" doesn't find the second one. (George V. Reilly) 871 ":buf foo<Tab>" doesn't find the second one. (George V. Reilly)
871 7 Output for ":scriptnames" and ":breaklist" should shorten the file names: 872 7 Output for ":scriptnames" and ":breaklist" should shorten the file names:
872 use "~/" when possible. 873 use "~/" when possible.
873 7 mb_off2cells() doesn't work correctly on the tail byte of a double-byte 874 7 mb_off2cells() doesn't work correctly on the tail byte of a double-byte
2337 2338
2338 'cindent', 'smartindent': 2339 'cindent', 'smartindent':
2339 8 Wrong indent below ? : with (): 2340 8 Wrong indent below ? : with ():
2340 if ((a ? (b) : c) != 0) 2341 if ((a ? (b) : c) != 0)
2341 aligns with ":". 2342 aligns with ":".
2343 8 Using "+" part of 'cinoptions' where it's not expected (Alexei Alexandrov):
2344 if (a)
2345 {
2346 } else
2347 asdf;
2342 8 Wrong indent for ":" after a method with line break in arguments: 2348 8 Wrong indent for ":" after a method with line break in arguments:
2343 Foo::Foo (int one, 2349 Foo::Foo (int one,
2344 int two) 2350 int two)
2345 : something(4) 2351 : something(4)
2346 {} 2352 {}