summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-21 21:33:03 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-21 21:33:03 +0000
commite580b0c34d3226f6ee5a62e33b987a239c0ba83e (patch)
treedf84ffbdea209ff98179063a00f08a01a0c4f249 /runtime
parent433f7c88d56bb8fd99082314055305a656462a13 (diff)
updated for version 7.0231v7.0231
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/todo.txt20
-rw-r--r--runtime/doc/version7.txt14
2 files changed, 20 insertions, 14 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index a7e1bb1508..faaf2b2dfd 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 7.0aa. Last change: 2006 Mar 20
+*todo.txt* For Vim version 7.0aa. Last change: 2006 Mar 21
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -30,24 +30,12 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs*
-------------------- Known bugs and current work -----------------------
-Links in docs to vimball docs.
-
HTML indenting can be slow, find out why.
-Add a function to get the current time in usec. reltime([start, [end]])
- reltime().sec == seconds, reltime().usec = microseconds
- reltime(start) current time relative to [start]
- echo timestring(reltime(start), 3) (3 is nr of digits after dot)
- reltime(start, end) difference between start and end
-
-Include GetLatestVimScripts script?
Adjust src/main.aap for installing manpages like in Makefile.
And for generating Vim.app for the Mac.
Install spell files with src/main.aap.
-Gnome2: When moving the toolbar out of the dock, so that it becomes floating,
-it can no longer be moved.
-
Win32: Describe how to do debugging. (George Reilly)
Mac unicode patch (Da Woon Jung, Eckehard Berns):
@@ -67,6 +55,8 @@ Add more tests for all new functionality in Vim 7. Especially new functions.
Add text in user manual for using the undo tree. Example with finding the
text of a previous change.
+Links in docs to GetLatestVimScripts (getscript) plugin.
+
Awaiting updated patches:
8 Add ":n" to fnamemodify(): normalize path, remove "../" when possible.
@@ -239,6 +229,10 @@ GTK+ GUI known bugs:
when it is longer than 4000 characters. Works OK from gvim to gvim and
vim to vim. Pasting through xterm (using the shift key) also works.
It starts working after GTK gvim loses the selection and gains it again.
+- Gnome2: When moving the toolbar out of the dock, so that it becomes
+ floating, it can no longer be moved. Therefore making it float has been
+ blocked for now.
+
Win32 GUI known bugs:
- Win32: tearoff menu window should have a scrollbar when it's taller than
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index 694e5f1176..05ed7d2a52 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -1,4 +1,4 @@
-*version7.txt* For Vim version 7.0aa. Last change: 2006 Mar 20
+*version7.txt* For Vim version 7.0aa. Last change: 2006 Mar 21
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -175,6 +175,13 @@ wastes its time.
In the Python interface vim.eval() also handles Dictionaries and Lists.
|python-eval| (G. Sumner Hayes)
+The |getscript| plugin was added as a convenient way to update scripts from
+www.vim.org automatically. (Charles Campbell)
+
+The |vimball| plugin was added as a convenient way to distribute a set of
+files for a plugin (plugin file, autoload script, documentation). (Charles
+Campbell)
+
Spell checking *new-spell*
--------------
@@ -721,6 +728,8 @@ New and extended functions: ~
|mkdir()| create a directory
|printf()| format text
|readfile()| read a file into a list of lines
+|reltime()| get time value, possibly relative
+|reltimestr()| turn a time value into a string
|remove()| remove one or more items from a List or Dictionary
|repeat()| repeat "expr" "count" times (Christophe Poucet)
|reverse()| reverse the order of a List
@@ -1255,6 +1264,9 @@ Also create a vimtutor.bat batch file.
The 'balloonexpr' option is now |global-local|.
+The system() function now runs in cooked mode, thus can be interrupted by
+CTRL-C.
+
==============================================================================
COMPILE TIME CHANGES *compile-changes-7*