summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-04-29 22:01:03 +0000
committerBram Moolenaar <Bram@vim.org>2006-04-29 22:01:03 +0000
commit06a89a51592d300396f2f846d1983df5029931be (patch)
tree6a0d97b40132d0eabb19b8419c190b1a10fb64bf /runtime
parentd8fc5c0b999204f47efd7702502b41ead11948a4 (diff)
updated for version 7.0f05
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt7
-rw-r--r--runtime/doc/motion.txt5
-rw-r--r--runtime/doc/options.txt9
-rw-r--r--runtime/doc/pattern.txt4
-rw-r--r--runtime/doc/term.txt6
-rw-r--r--runtime/synmenu.vim9
6 files changed, 22 insertions, 18 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index c3f69477ce..4e7d5f3448 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt* For Vim version 7.0f. Last change: 2006 Apr 26
+*eval.txt* For Vim version 7.0f. Last change: 2006 Apr 29
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2344,12 +2344,13 @@ exists({expr}) The result is a Number, which is non-zero if {expr} is
exists("##ColorScheme")
< There must be no space between the symbol (&/$/*/#) and the
name.
+ Trailing characters that can't be part of the name are often
+ ignored, but don't depend on it.
Note that the argument must be a string, not the name of the
variable itself! For example: >
exists(bufcount)
< This doesn't check for existence of the "bufcount" variable,
- but gets the contents of "bufcount", and checks if that
- exists.
+ but gets the value of "bufcount", and checks if that exists.
expand({expr} [, {flag}]) *expand()*
Expand wildcards and the following special keywords in {expr}.
diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt
index 5b05d128bf..7173faf970 100644
--- a/runtime/doc/motion.txt
+++ b/runtime/doc/motion.txt
@@ -1,4 +1,4 @@
-*motion.txt* For Vim version 7.0f. Last change: 2006 Apr 28
+*motion.txt* For Vim version 7.0f. Last change: 2006 Apr 29
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -707,7 +707,8 @@ there are a few restrictions.
The normal method is to select a <tag> until the matching </tag>. For "at"
the tags are included, for "it" they are excluded. But when "it" is repeated
-the tags will be included (otherwise nothing would change).
+the tags will be included (otherwise nothing would change). Also, "it" used
+on a tag block with no contents will select the leading tag.
"<aaa/>" items are skipped. Case is ignored, also for XML where case does
matter.
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index c2e3011c0c..749fb5862d 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1,4 +1,4 @@
-*options.txt* For Vim version 7.0f. Last change: 2006 Apr 26
+*options.txt* For Vim version 7.0f. Last change: 2006 Apr 29
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3201,7 +3201,8 @@ A jump table for the options with a short description can be found at |Q_op|.
For Mac OSX you can use something like this: >
:set guifont=Monaco:h10
-< *E236*
+< Also see 'macatsui', it can help fix display problems.
+ *E236*
Note that the fonts must be mono-spaced (all characters have the same
width). An exception is GTK 2: all fonts are accepted, but
mono-spaced fonts look best.
@@ -5108,8 +5109,8 @@ A jump table for the options with a short description can be found at |Q_op|.
{not available when compiled without the
|+insert_expand| feature}
{not in Vi}
- Determines the maximum number of items to show in the popup menu.
- When zero as much space as available is used.
+ Determines the maximum number of items to show in the popup menu for
+ Insert mode completion. When zero as much space as available is used.
|ins-completion-menu|.
diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt
index 8d5d40e153..d68da44bd7 100644
--- a/runtime/doc/pattern.txt
+++ b/runtime/doc/pattern.txt
@@ -1,4 +1,4 @@
-*pattern.txt* For Vim version 7.0f. Last change: 2006 Apr 22
+*pattern.txt* For Vim version 7.0f. Last change: 2006 Apr 29
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1019,7 +1019,7 @@ x A single character, with no special meaning, matches itself
have almost the same meaning, e.g., when ignoring accents. The form
is:
[=a=]
- Currrently this is only implemented for latin1. Also works for the
+ Currently this is only implemented for latin1. Also works for the
latin1 characters in utf-8 and latin9.
*/[[.* *[..]*
- A collation element. This currently simply accepts a single
diff --git a/runtime/doc/term.txt b/runtime/doc/term.txt
index 5efec94d8f..d5a20f373e 100644
--- a/runtime/doc/term.txt
+++ b/runtime/doc/term.txt
@@ -1,4 +1,4 @@
-*term.txt* For Vim version 7.0f. Last change: 2006 Apr 24
+*term.txt* For Vim version 7.0f. Last change: 2006 Apr 29
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -751,8 +751,8 @@ which is editing another buffer, the Visual or Select mode is stopped.
In Normal, Visual and Select mode clicking the right mouse button with the alt
key pressed causes the Visual area to become blockwise. When 'mousemodel is
"popup" the left button has to be used with the alt key. Note that this won't
-work on systems where the window manager uses the mouse when the alt key is
-pressed (it may move the window).
+work on systems where the window manager consumes the mouse events when the
+alt key is pressed (it may move the window).
*double-click*
Double, triple and quadruple clicks are supported when the GUI is active,
diff --git a/runtime/synmenu.vim b/runtime/synmenu.vim
index 6a9d69b7d3..a2a28bfd7b 100644
--- a/runtime/synmenu.vim
+++ b/runtime/synmenu.vim
@@ -83,10 +83,11 @@ an 50.10.550 &Syntax.AB.Baan :cal SetSyn("baan")<CR>
an 50.10.560 &Syntax.AB.BASIC :cal SetSyn("basic")<CR>
an 50.10.570 &Syntax.AB.BC\ calculator :cal SetSyn("bc")<CR>
an 50.10.580 &Syntax.AB.BDF\ font :cal SetSyn("bdf")<CR>
-an 50.10.590 &Syntax.AB.BibTeX :cal SetSyn("bib")<CR>
-an 50.10.600 &Syntax.AB.BIND.BIND\ config :cal SetSyn("named")<CR>
-an 50.10.610 &Syntax.AB.BIND.BIND\ zone :cal SetSyn("bindzone")<CR>
-an 50.10.620 &Syntax.AB.Blank :cal SetSyn("blank")<CR>
+an 50.10.590 &Syntax.AB.BibTeX.Bibliography\ database :cal SetSyn("bib")<CR>
+an 50.10.600 &Syntax.AB.BibTeX.Bibliography\ Style :cal SetSyn("bst")<CR>
+an 50.10.610 &Syntax.AB.BIND.BIND\ config :cal SetSyn("named")<CR>
+an 50.10.620 &Syntax.AB.BIND.BIND\ zone :cal SetSyn("bindzone")<CR>
+an 50.10.630 &Syntax.AB.Blank :cal SetSyn("blank")<CR>
an 50.20.100 &Syntax.C.C :cal SetSyn("c")<CR>
an 50.20.110 &Syntax.C.C++ :cal SetSyn("cpp")<CR>
an 50.20.120 &Syntax.C.C# :cal SetSyn("cs")<CR>