comparison runtime/doc/todo.txt @ 97:d4f3db33d782 v7.0037

updated for version 7.0037
author vimboss
date Tue, 11 Jan 2005 21:34:41 +0000
parents d0764d5e4619
children 1f3902f3eb5c
comparison
equal deleted inserted replaced
96:8f25c0d2210f 97:d4f3db33d782
1 *todo.txt* For Vim version 7.0aa. Last change: 2005 Jan 09 1 *todo.txt* For Vim version 7.0aa. Last change: 2005 Jan 11
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 Use 'ignorecase' for ":vimgrep"? 33 Fixes in ex_getln.c also in Vim 6.3.
34 34
35 List: 35 List type:
36 - map() function: map(list, 'some . & . thing')?
37 - filter() function: filter(list, '& !~ "^\\s*$"')?
38 - searchlist() function: like index() but with a regexp.
39 - Make string() work so that a list can be parsed back?
40 - Add List functions to version7.txt. 36 - Add List functions to version7.txt.
41 - Add List functions to overview of funtions in user manual. 37 - Add List functions to overview of funtions in user manual.
42 - Explain Lists in the user manual? 38 - Explain Lists in the user manual?
43 39
44 Better way to get temp file for tcltags and vimspell scripts. (javier Pena) 40 Better way to get temp file for tcltags and vimspell scripts. (javier Pena)
41 Possibly leave out code for temp directory.
45 42
46 When allocating a new variable, a search is done for an empty entry. May 43 When allocating a new variable, a search is done for an empty entry. May
47 waste a lot of time if there isn't one. Keep an index of available entry, 44 waste a lot of time if there isn't one. Keep an index of available entry,
48 none available, or unknown. 45 none available, or unknown.
49 46
242 HTML indenting can be slow, find out why. Any way to do some kind of 239 HTML indenting can be slow, find out why. Any way to do some kind of
243 profiling for Vim script? 240 profiling for Vim script?
244 241
245 List data type performance: 242 List data type performance:
246 - Cache the length of a List? 243 - Cache the length of a List?
244 - Cache the last used index?
247 - Use blocks of items, so that finding an item by index is faster? 245 - Use blocks of items, so that finding an item by index is faster?
248 246
249 Awaiting updated patches: 247 Awaiting updated patches:
250 --- awaiting updated patch --- 248 --- awaiting updated patch ---
251 7 Add patch from Wall for this one ( ~/Mail/oldmail/wall/in.00019 ): 249 7 Add patch from Wall for this one ( ~/Mail/oldmail/wall/in.00019 ):