comparison runtime/doc/todo.txt @ 91:d0764d5e4619

updated for version 7.0036
author vimboss
date Sun, 09 Jan 2005 21:22:45 +0000
parents 2b4debdc8d2c
children d4f3db33d782
comparison
equal deleted inserted replaced
90:9d4f762cc1d9 91:d0764d5e4619
1 *todo.txt* For Vim version 7.0aa. Last change: 2005 Jan 08 1 *todo.txt* For Vim version 7.0aa. Last change: 2005 Jan 09
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
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 Use 'ignorecase' for ":vimgrep"?
34
35 List:
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.
41 - Add List functions to overview of funtions in user manual.
42 - Explain Lists in the user manual?
43
44 Better way to get temp file for tcltags and vimspell scripts. (javier Pena)
34 45
35 When allocating a new variable, a search is done for an empty entry. May 46 When allocating a new variable, a search is done for an empty entry. May
36 waste a lot of time if there isn't one. Keep an index of available entry, 47 waste a lot of time if there isn't one. Keep an index of available entry,
37 none available, or unknown. 48 none available, or unknown.
38 49