comparison runtime/doc/todo.txt @ 511:32cf0d2e14b4

updated for version 7.0143
author vimboss
date Wed, 07 Sep 2005 21:21:14 +0000
parents a1059cda45f2
children b7abd41f91da
comparison
equal deleted inserted replaced
510:b47114409935 511:32cf0d2e14b4
1 *todo.txt* For Vim version 7.0aa. Last change: 2005 Sep 06 1 *todo.txt* For Vim version 7.0aa. Last change: 2005 Sep 07
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
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 32
33 When ":vimgrep" lists filenames they should be shortened. Silence messages 33 When ":vimgrep" lists filenames while searching they should be shortened.
34 for decompressing. 34 Silence messages for decompressing?
35 35
36 When 'rl' is set "q/" causes hit-enter prompt. 36 ccomplete:
37 37 - need list of tags files used in 'tags'.
38 Try out using the free MS compiler and debugger, using Make_mvc.mak.
39 38
40 Mac unicode patch (Da Woon Jung): 39 Mac unicode patch (Da Woon Jung):
41 - selecting proportional font breaks display 40 - selecting proportional font breaks display
42 - UTF-8 text causes display problems. Font replacement causes this. 41 - UTF-8 text causes display problems. Font replacement causes this.
43 42
44 Win32: Use the free downloadable compiler 7.1. Figure out how to do debugging 43 Win32: Use the free downloadable compiler 7.1. Figure out how to do debugging
45 (with Agide?) and describe it. (George Reilly) 44 (with Agide?) and describe it. (George Reilly)
45 Try out using the free MS compiler and debugger, using Make_mvc.mak.
46 46
47 Autoload: 47 Autoload:
48 - Add a Vim script in $VIMRUNTIME/tools that takes a file with a list of 48 - Add a Vim script in $VIMRUNTIME/tools that takes a file with a list of
49 script names and a help file and produces a script that can be sourced to 49 script names and a help file and produces a script that can be sourced to
50 install the scripts in the user's directories. 50 install the scripts in the user's directories.
89 After a reference to a struct or class suggest members. 89 After a reference to a struct or class suggest members.
90 Recognizing "var.mem" and 'var->mem" is easy. 90 Recognizing "var.mem" and 'var->mem" is easy.
91 How to get the type of "var"? 91 How to get the type of "var"?
92 tags file doesn't give type of typedef! E.g., oparg_T is 92 tags file doesn't give type of typedef! E.g., oparg_T is
93 listed with "^} oparg_T;$" 93 listed with "^} oparg_T;$"
94 mlcscope may do it, but I can't find the sources 94 mlcscope may do it, but it's not very portable.
95 http://www.exptools.com/cscope
95 How to get the members of that type? 96 How to get the members of that type?
96 tags file has struct: and class: fields 97 tags file has struct: and class: fields
97 98
98 In function arguments suggest variables of expected type. 99 In function arguments suggest variables of expected type.
99 100