summaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-02-05 21:43:56 +0000
committerBram Moolenaar <Bram@vim.org>2005-02-05 21:43:56 +0000
commit2a8d1f877ce28929074964b022a414536b125702 (patch)
treee03a58d71ec04d20a9ee844b5e966fb158ab5ca0 /runtime/doc
parent3a7c85bc13c2094042d00eb56ace3445d5dfd5bc (diff)
downloadvim-git-2a8d1f877ce28929074964b022a414536b125702.tar.gz
updated for version 7.0048v7.0048
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/todo.txt25
-rw-r--r--runtime/doc/various.txt6
-rw-r--r--runtime/doc/version7.txt13
3 files changed, 19 insertions, 25 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index fa44ff38c..716ec11a0 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 Feb 02
+*todo.txt* For Vim version 7.0aa. Last change: 2005 Feb 05
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -30,21 +30,6 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs*
-------------------- Known bugs and current work -----------------------
-Sanity check of eval.c:
-- Check use of v_type for VAR_FUNC, VAR_LIST ad VAR_DICT.
-- Go through the code for magic braces.
-- Check list watchers.
-
-Mention rsync command on runtime.php page:
- rsync -avzcP --delete --exclude="dos" --delete-excluded ftp.nluug.nl::Vim/runtime/ vim63-runtime
-
-When 'paste' is set in the GUI the toolbar button doesn't work in Insert mode.
-Use ":exe" in menu.vim to avoid duplicating the commands, instead of using a
-mapping.
-
-Better way to get temp file for tcltags and vimspell scripts. (javier Pena)
-Possibly leave out code for temp directory.
-
patch for QuickFixCmdPre and QuickFixCmdPost autocommands. (Ciaran McCreesh,
2005 Jan 1)
@@ -53,6 +38,7 @@ of the text area doesn't cause a horizontal scroll. (Dave Ewart)
New Motif toolbar button from Marcin Dalecki:
- add remark in version7.txt
+- after ":colors default" all the toolbar icons are the same.
- check if it works for pixmap loaded from a file.
Explain Lists, Dicts, |:for| etc. in the user manual |usr_41.txt|.
@@ -60,10 +46,6 @@ Add more tests for all List and Dict related functionality.
Awaiting response:
- Patch for mch_FullName() also in Vim 6.3? os_mswin.c
-- Win32: "gvim -V100" should use dialog with scrollbar. Using
- gui_mch_dialog() would be good, but need to move display_errors() to after
- creating the window, so that s_hwnd is valid.
- How to add a scrollbar to the dialog?
- Win32: tearoff menu window should have a scrollbar when it's taller than
the screen.
@@ -74,7 +56,8 @@ PLANNED FOR VERSION 7.0:
+ can include NUL characters
- setline() will have problems with NL vs NUL.
Can use list of numbers instead (inefficient though).
- Also: for strings up to 3 bytes don't allocate memory, VAR_STRINGX.
+ Also: for strings up to 3 bytes don't allocate memory, use v_list itself
+ as a character array?
- new DATA TYPES:
- None? (or use empty string?)
See ~/vim/ideas.txt.
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt
index eb5cc8b82..84093032d 100644
--- a/runtime/doc/various.txt
+++ b/runtime/doc/various.txt
@@ -1,4 +1,4 @@
-*various.txt* For Vim version 7.0aa. Last change: 2005 Jan 26
+*various.txt* For Vim version 7.0aa. Last change: 2005 Feb 04
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -110,8 +110,8 @@ g8 Print the hex values of the bytes used in the
+ current line 1 scr forward 1 scr forward
- 1 scr back current line current line
^ 2 scr back 1 scr back 1 scr back
- . 1/2 scr back 1/2 scr fwd 1/2 src fwd
- = 1/2 src back 1/2 scr fwd current line
+ . 1/2 scr back 1/2 scr fwd 1/2 scr fwd
+ = 1/2 scr back 1/2 scr fwd current line
Specifying no mark at all is the same as "+".
If the mark is "=", a line of dashes is printed
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index cf8d842ee..87754f34d 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 Feb 01
+*version7.txt* For Vim version 7.0aa. Last change: 2005 Feb 04
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -241,8 +241,10 @@ New functions: ~
|keys()| get List of Dictionary keys
|len()| number of items in a List or Dictionary
|map()| change each List or Dictionary item
+|matchlist()| list with match and submatches of a pattern in a string
|max()| maximum value in a List or Dictionary
|min()| minimum value in a List or Dictionary
+|readfile()| read a file into a list of lines
|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
@@ -252,6 +254,7 @@ New functions: ~
|system()| Filters {input} through a shell command.
|tr()| Translate characters. (Ron Aaron)
|values()| get List of Dictionary values
+|writefile()| write a list of lines into a file
New autocommand events: ~
@@ -724,4 +727,12 @@ When 'paste' is set in the GUI the Paste toolbar button doesn't work. Clear
A message about a wrong viminfo line included the trailing NL.
+When 'paste' is set in the GUI the toolbar button doesn't work in Insert mode.
+Use ":exe" in menu.vim to avoid duplicating the commands, instead of using a
+mapping.
+
+Treat "mlterm" as an xterm-like terminal. (Seiichi Sato)
+
+":z.4" and ":z=4" didn't work Vi compatible.
+
vim:tw=78:ts=8:ft=help:norl: