updated for version 7.0060
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 9e4f850..0e8d3fc 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 Mar 07
+*eval.txt* For Vim version 7.0aa. Last change: 2005 Mar 15
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -9,7 +9,7 @@
Using expressions is introduced in chapter 41 of the user manual |usr_41.txt|.
Note: Expression evaluation can be disabled at compile time. If this has been
-done, the features in this document are not available. See |+eval| and
+done, the features in this document are not available. See |+eval| and
|no-eval-feature|.
1. Variables |variables|
@@ -445,7 +445,7 @@
adict.
Weeding out entries from a Dictionary can be done with |filter()|: >
- :call filter(dict 'v:val =~ "x"')
+ :call filter(dict 'v:val =~ "x"')
This removes all entries from "dict" with a value not matching 'x'.
@@ -1454,7 +1454,7 @@
empty( {expr}) Number TRUE if {expr} is empty
errorlist() List list of quickfix items
escape( {string}, {chars}) String escape {chars} in {string} with '\'
-eval( {string}) any evaluate {string} into its value
+eval( {string}) any evaluate {string} into its value
eventhandler( ) Number TRUE if inside an event handler
executable( {expr}) Number 1 if executable {expr} exists
exists( {expr}) Number TRUE if {expr} exists
@@ -1597,6 +1597,7 @@
String attribute {what} of syntax ID {synID}
synIDtrans( {synID}) Number translated syntax ID of {synID}
system( {expr} [, {input}]) String output of shell command/filter {expr}
+taglist({expr}) List list of tags matching {expr}
tempname() String name for a temporary file
tolower( {expr}) String the String {expr} switched to lowercase
toupper( {expr}) String the String {expr} switched to uppercase
@@ -2494,7 +2495,7 @@
:echo getfperm("/etc/passwd")
< This will hopefully (from a security point of view) display
the string "rw-r--r--" or even "rw-------".
-
+
getftime({fname}) *getftime()*
The result is a Number, which is the last modification time of
the given file {fname}. The value is measured as seconds
@@ -3706,7 +3707,7 @@
:let comma1 = stridx(line, ",")
:let comma2 = stridx(line, ",", comma1 + 1)
< The search is done case-sensitive.
- For pattern searches use |match()|.
+ For pattern searches use |match()|.
-1 is returned if the {needle} does not occur in {haystack}.
See also |strridx()|.
Examples: >
@@ -3852,6 +3853,7 @@
"reverse" "1" if reverse
"inverse" "1" if inverse (= reverse)
"underline" "1" if underlined
+ "undercurl" "1" if undercurled
Example (echoes the color of the syntax item under the
cursor): >
@@ -3891,6 +3893,39 @@
Unlike ":!cmd" there is no automatic check for changed files.
Use |:checktime| to force a check.
+
+taglist({expr}) *taglist()*
+ Returns a list of tags matching the regular expression {expr}.
+ Each list item is a dictionary with the following entries:
+ name name of the tag.
+ filename name of the file where the tag is
+ defined.
+ cmd Ex command used to locate the tag in
+ the file.
+ kind type of the tag. The value for this
+ entry depends on the language specific
+ kind values generated by the ctags
+ tool.
+ static a file specific tag. Refer to
+ |static-tag| for more information.
+ More entries may be present, depending on the content of the
+ tags file: access, implementation, inherits and signature.
+ Refer to the ctags documentation for information about these
+ fields. For C code the fields "struct", "class" and "enum"
+ may appear, they give the name of the entity the tag is
+ contained in.
+
+ If there are no matching tags, then an empty list is returned.
+
+ To get an exact tag match, the anchors '^' and '$' should be
+ used in {expr}. Refer to |tag-regexp| for more information
+ about the tag search regular expression pattern.
+
+ Refer to |'tags'| for information about how the tags file is
+ located by Vim. Refer to |tags-file-format| for the format of
+ the tags file generated by the different ctags tools.
+
+
tempname() *tempname()* *temp-file-name*
The result is a String, which is the name of a file that
doesn't exist. It can be used for a temporary file. The name
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index f3ec971..46000c0 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1,4 +1,4 @@
-*options.txt* For Vim version 7.0aa. Last change: 2005 Mar 10
+*options.txt* For Vim version 7.0aa. Last change: 2005 Mar 14
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3356,6 +3356,7 @@
b bold (termcap entry "md" and "me")
s standout (termcap entry "so" and "se")
u underline (termcap entry "us" and "ue")
+ c undercurl (termcap entry "Cs" and "Ce")
n no highlighting
- no highlighting
: use a highlight group
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 666e574..1cfff84 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -767,7 +767,9 @@
't_AL' term.txt /*'t_AL'*
't_CS' term.txt /*'t_CS'*
't_CV' term.txt /*'t_CV'*
+'t_Ce' term.txt /*'t_Ce'*
't_Co' term.txt /*'t_Co'*
+'t_Cs' term.txt /*'t_Cs'*
't_DL' term.txt /*'t_DL'*
't_EI' term.txt /*'t_EI'*
't_F1' term.txt /*'t_F1'*
@@ -5093,6 +5095,7 @@
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*
@@ -5112,6 +5115,7 @@
highlight-gui syntax.txt /*highlight-gui*
highlight-guibg syntax.txt /*highlight-guibg*
highlight-guifg syntax.txt /*highlight-guifg*
+highlight-guisp syntax.txt /*highlight-guisp*
highlight-start syntax.txt /*highlight-start*
highlight-stop syntax.txt /*highlight-stop*
highlight-term syntax.txt /*highlight-term*
@@ -6297,7 +6301,9 @@
t_AL term.txt /*t_AL*
t_CS term.txt /*t_CS*
t_CV term.txt /*t_CV*
+t_Ce term.txt /*t_Ce*
t_Co term.txt /*t_Co*
+t_Cs term.txt /*t_Cs*
t_DL term.txt /*t_DL*
t_EI term.txt /*t_EI*
t_F1 term.txt /*t_F1*
diff --git a/runtime/doc/usr_10.txt b/runtime/doc/usr_10.txt
index 807d2f9..9e536d5 100644
--- a/runtime/doc/usr_10.txt
+++ b/runtime/doc/usr_10.txt
@@ -1,4 +1,4 @@
-*usr_10.txt* For Vim version 7.0aa. Last change: 2004 Mar 12
+*usr_10.txt* For Vim version 7.0aa. Last change: 2005 Mar 15
VIM USER MANUAL - by Bram Moolenaar
@@ -437,7 +437,8 @@
insert command and affects only the first line of the block.
The "A" command works the same way, except that it appends after the right
-side of the block.
+side of the block. And it does insert text in a short line. Thus you can
+make a choice whether you do or don't want to append text to a short line.
There is one special case for "A": Select a Visual block and then use "$"
to make the block extend to the end of each line. Using "A" now will append
the text to the end of each line.