0
0
mirror of https://github.com/vim/vim.git synced 2025-10-01 04:54:07 -04:00

updated for version 7.0033

This commit is contained in:
Bram Moolenaar
2005-01-07 21:51:51 +00:00
parent a14de3dd5b
commit 0d6602271c
3 changed files with 1002 additions and 628 deletions

View File

@@ -1,4 +1,4 @@
*starting.txt* For Vim version 7.0aa. Last change: 2005 Jan 03 *starting.txt* For Vim version 7.0aa. Last change: 2005 Jan 07
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1033,6 +1033,7 @@ CTRL-Z Suspend Vim, like ":stop".
Command-line mode, the CTRL-Z is inserted as a normal Command-line mode, the CTRL-Z is inserted as a normal
character. In Visual mode Vim goes back to Normal character. In Visual mode Vim goes back to Normal
mode. mode.
Note: if CTRL-Z undoes a change see |mswin.vim|.
:sus[pend][!] or *:sus* *:suspend* *:st* *:stop* :sus[pend][!] or *:sus* *:suspend* *:st* *:stop*

View File

@@ -1,4 +1,4 @@
*todo.txt* For Vim version 7.0aa. Last change: 2005 Jan 06 *todo.txt* For Vim version 7.0aa. Last change: 2005 Jan 07
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@@ -31,16 +31,8 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
-------------------- Known bugs and current work ----------------------- -------------------- Known bugs and current work -----------------------
List data type: List data type:
- add more functions: - Write docs for using Lists.
reverse(list) reverses order - Fix the error numbers E999 in eval.c.
sort(list[, func]) sort; func compares items
getval(list, idx[, default]) get value at idx or default
file2lines()
file2words()
str2list() parse string to list in several ways: white
separated, [] form, etc.
Fix the error numbers E999 in eval.c.
- Cache the length of a List?
Use 'ignorecase' for ":vimgrep"? Use 'ignorecase' for ":vimgrep"?
@@ -242,6 +234,10 @@ Add gui_mch_browsedir() for Motif, KDE and Mac OS/X.
HTML indenting can be slow, find out why. Any way to do some kind of HTML indenting can be slow, find out why. Any way to do some kind of
profiling for Vim script? profiling for Vim script?
List data type performance:
- Cache the length of a List?
- Use blocks of items, so that finding an item by index is faster?
Awaiting updated patches: Awaiting updated patches:
--- awaiting updated patch --- --- awaiting updated patch ---
7 Add patch from Wall for this one ( ~/Mail/oldmail/wall/in.00019 ): 7 Add patch from Wall for this one ( ~/Mail/oldmail/wall/in.00019 ):

1591
src/eval.c

File diff suppressed because it is too large Load Diff