summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-01-21 11:55:25 +0000
committerBram Moolenaar <Bram@vim.org>2005-01-21 11:55:25 +0000
commitdcaf10e19aac2af7c93d6dd23cb6241f971f2b19 (patch)
treed704aec40840d64d81fbf7225fcd5dd64eab847f /runtime
parentca4729948bdc79d2175607194fdd98df7d6eb529 (diff)
updated for version 7.0043
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt9
-rw-r--r--runtime/doc/quickfix.txt6
-rw-r--r--runtime/doc/starting.txt4
-rw-r--r--runtime/doc/tags5
-rw-r--r--runtime/doc/todo.txt8
-rw-r--r--runtime/doc/various.txt5
-rw-r--r--runtime/doc/version7.txt10
7 files changed, 36 insertions, 11 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index bcd71c0a1f..3eeb98fd72 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt* For Vim version 7.0aa. Last change: 2005 Jan 19
+*eval.txt* For Vim version 7.0aa. Last change: 2005 Jan 20
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -4413,7 +4413,12 @@ This would call the function "my_func_whizz(parameter)".
List item.
*E106*
:let {var-name} .. List the value of variable {var-name}. Multiple
- variable names may be given.
+ variable names may be given. Special names recognized
+ here: *E738*
+ g: global variables.
+ b: local buffer variables.
+ w: local window variables.
+ v: Vim variables.
:let List the values of all variables. The type of the
variable is indicated before the value:
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index 57ea91f9ab..efec7966ce 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -1,4 +1,4 @@
-*quickfix.txt* For Vim version 7.0aa. Last change: 2005 Jan 10
+*quickfix.txt* For Vim version 7.0aa. Last change: 2005 Jan 20
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -288,6 +288,8 @@ advantages are:
- Uses Vim search patterns. Multi-line patterns can be used.
- When plugins are enabled: compressed and remote files can be searched.
|gzip| |netrw|
+- When 'hidden' is set the files are kept loaded, thus repeating a search is
+ much faster. Uses a lot of memory though!
5.1 using Vim's internal grep
@@ -303,6 +305,8 @@ advantages are:
'ignorecase' applies. To overrule it use |/\c| to
ignore case or |/\C| to match case. 'smartcase' is
not used.
+ Every second or so the searched file name is displayed
+ to give you an idea of the progress made.
Examples: >
:vimgrep /an error/ *.c
:vimgrep /\<FileName\>/ *.h include/*
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt
index 705b50fa23..39fbd44cf0 100644
--- a/runtime/doc/starting.txt
+++ b/runtime/doc/starting.txt
@@ -1,4 +1,4 @@
-*starting.txt* For Vim version 7.0aa. Last change: 2005 Jan 07
+*starting.txt* For Vim version 7.0aa. Last change: 2005 Jan 20
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1193,7 +1193,7 @@ This saves the current Session, and starts off the command to load another.
When [file] is omitted or is a number from 1 to 9, a
name is generated and 'viewdir' prepended. When last
directory name in 'viewdir' does not exist, this
- directory is created.
+ directory is created. *E738*
An existing file is always overwritten then. Use
|:loadview| to load this view again.
When [file] is the name of a file ('viewdir' is not
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 49d0f2dceb..8944418719 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -2036,13 +2036,16 @@ $VIMRUNTIME starting.txt /*$VIMRUNTIME*
:lefta windows.txt /*:lefta*
:leftabove windows.txt /*:leftabove*
:let eval.txt /*:let*
+:let+= eval.txt /*:let+=*
:let-$ eval.txt /*:let-$*
+:let-= eval.txt /*:let-=*
:let-@ eval.txt /*:let-@*
:let-environment eval.txt /*:let-environment*
:let-option eval.txt /*:let-option*
:let-register eval.txt /*:let-register*
:let-star eval.txt /*:let-star*
:let-unpack eval.txt /*:let-unpack*
+:let.= eval.txt /*:let.=*
:list various.txt /*:list*
:lm map.txt /*:lm*
:lmap map.txt /*:lmap*
@@ -3634,6 +3637,7 @@ E732 eval.txt /*E732*
E733 eval.txt /*E733*
E735 eval.txt /*E735*
E736 eval.txt /*E736*
+E737 eval.txt /*E737*
E74 message.txt /*E74*
E75 vi_diff.txt /*E75*
E76 pattern.txt /*E76*
@@ -5034,7 +5038,6 @@ hebrew hebrew.txt /*hebrew*
hebrew.txt hebrew.txt /*hebrew.txt*
help various.txt /*help*
help-context help.txt /*help-context*
-help-tags tags 1
help-translated various.txt /*help-translated*
help-xterm-window various.txt /*help-xterm-window*
help.txt help.txt /*help.txt*
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 70a783d679..06186f9761 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 19
+*todo.txt* For Vim version 7.0aa. Last change: 2005 Jan 21
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -30,10 +30,12 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs*
-------------------- Known bugs and current work -----------------------
+Dict member: use dict..foo instead of dict.foo to avoid confusion with string
+concatenation?
+
Hashtable implementation:
-- Use hashtable for variables and syntax keywords.
+- Use hashtable for syntax keywords.
-":grep": display progress (filename, every second or so)
Can ":grep" made faster somehow? Do profiling.
Sanity check of eval.c:
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt
index 964016ae6d..a04dd30cb5 100644
--- a/runtime/doc/various.txt
+++ b/runtime/doc/various.txt
@@ -1,4 +1,4 @@
-*various.txt* For Vim version 7.0aa. Last change: 2004 Dec 23
+*various.txt* For Vim version 7.0aa. Last change: 2005 Jan 20
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -387,10 +387,13 @@ N *+X11* Unix only: can restore window title |X11|
:redi[r] @{a-zA-Z} Redirect messages to register {a-z}. Append to the
contents of the register if its name is given
uppercase {A-Z}. {not in Vi}
+:redi[r] @{a-z}> Append messages to register {a-z}. {not in Vi}
:redi[r] @* Redirect messages to the clipboard. {not in Vi}
+:redi[r] @*> Append messages to the clipboard. {not in Vi}
:redi[r] @" Redirect messages to the unnamed register. {not in Vi}
+:redi[r] @"> Append messages to the unnamed register. {not in Vi}
:redi[r] END End redirecting messages. {not in Vi}
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index f2ca9674d7..4865bb5345 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 17
+*version7.txt* For Vim version 7.0aa. Last change: 2005 Jan 20
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -418,6 +418,14 @@ When a register is empty it is not stored in the viminfo file.
Removed the tcltags script, it's obsolete.
+":redir @*>" and ":redir @+>" append to the clipboard. Better check for
+invalid characters after the register name.
+
+":let g:" lists global variables.
+":let b:" lists buffer-local variables.
+":let w:" lists window-local variables.
+":let v:" lists Vim variables.
+
==============================================================================
COMPILE TIME CHANGES *compile-changes-7*