summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-01-05 22:19:46 +0000
committerBram Moolenaar <Bram@vim.org>2005-01-05 22:19:46 +0000
commit3d60ec2aafeebeb55638e8de2aaa6eca88e4e89a (patch)
tree614cfc20e492ba4d65714f5f26f38a3829c2491e /runtime
parent1280586e4b3b88e2ce0e9a66c49950b0768fa3a9 (diff)
updated for version 7.0031v7.0031
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/todo.txt16
-rw-r--r--runtime/doc/version7.txt4
2 files changed, 12 insertions, 8 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 924853b923..54213cfc25 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 7.0aa. Last change: 2005 Jan 04
+*todo.txt* For Vim version 7.0aa. Last change: 2005 Jan 05
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -30,16 +30,16 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs*
-------------------- Known bugs and current work -----------------------
-When 'insertmode' is set CTRL-I 4isometext<Esc> and then some typing hangs
-Vim. (Jens Paulus)
-
-:let completion stops after the first argument.
-
List data type:
+- When removing items from the condition stack may free cs_fors.
+- don't copy the list, use a list-watcher to adjust the item pointer when it's
+ deleted.
- "for a in list"
+ Make copy of the list to avoid trouble when it changes. As one big block?
- "for [a, b] in [[1, 2], [3, 4]]"
+- support list generator: items are obtained with a function by index.
+ "range(1, 400, 2)" creates one.
- == (same value) and "is" (same list)
-- store in viminfo: read_viminfo_varlist()
- add many functions:
call(func, list) call function
keys(list) list of all indexes 0 - (len(list) - 1)
@@ -56,6 +56,8 @@ List data type:
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.
Function reference: Define a nameless (numbered) function and assign
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index 02814008ec..b5191486ef 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -1,4 +1,4 @@
-*version7.txt* For Vim version 7.0aa. Last change: 2005 Jan 04
+*version7.txt* For Vim version 7.0aa. Last change: 2005 Jan 05
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -645,4 +645,6 @@ Use a Vim command to fix all fileformats to dos before executing the tests.
When using ":new" and the file fits in the window, lines could still be above
the window. Now remove empty lines instead of keeping the relative position.
+Cmdline completion didn't work after ":let var1 var<Tab>".
+
vim:tw=78:ts=8:ft=help:norl: