Runtime file updates. Fix tar plugin window split.
diff --git a/runtime/doc/message.txt b/runtime/doc/message.txt
index fe9afbd..1b0a139 100644
--- a/runtime/doc/message.txt
+++ b/runtime/doc/message.txt
@@ -1,4 +1,4 @@
-*message.txt* For Vim version 7.3f. Last change: 2010 Jul 26
+*message.txt* For Vim version 7.3f. Last change: 2010 Aug 10
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -547,7 +547,7 @@
can then be used, which is a lot faster than a linear search. If your tags
files are not properly sorted, reset the |'tagbsearch'| option.
This message is only given when Vim detects a problem when searching for a
-tag. Sometimes this message is not given, even thought the tags file is not
+tag. Sometimes this message is not given, even though the tags file is not
properly sorted.
*E460* >
diff --git a/runtime/doc/pi_tar.txt b/runtime/doc/pi_tar.txt
index 88a25e9..a20d095 100644
--- a/runtime/doc/pi_tar.txt
+++ b/runtime/doc/pi_tar.txt
@@ -1,4 +1,4 @@
-*pi_tar.txt* For Vim version 7.3f. Last change: 2010 Jul 27
+*pi_tar.txt* For Vim version 7.3f. Last change: 2010 Aug 09
+====================+
| Tar File Interface |
@@ -83,6 +83,8 @@
4. History *tar-history*
+ v26 Aug 09, 2010 * uses buffer-local instead of window variables to hold
+ tarfile name
v25 Jun 19, 2010 * (Jan Steffens) added support for xz compression
v24 Apr 07, 2009 * :Untarvim command implemented
Sep 28, 2009 * Added lzma support
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt
index 03e4faa..3460f6b 100644
--- a/runtime/doc/syntax.txt
+++ b/runtime/doc/syntax.txt
@@ -1,4 +1,4 @@
-*syntax.txt* For Vim version 7.3f. Last change: 2010 Aug 08
+*syntax.txt* For Vim version 7.3f. Last change: 2010 Aug 10
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2613,7 +2613,7 @@
TEX *tex.vim* *ft-tex-syntax*
*tex-folding*
-Want Syntax Folding? ~
+ Tex: Want Syntax Folding? ~
As of version 28 of <syntax/tex.vim>, syntax-based folding of parts, chapters,
sections, subsections, etc are supported. Put >
@@ -2623,7 +2623,7 @@
% vim: fdm=syntax
<
*tex-nospell*
-Don't Want Spell Checking In Comments? ~
+ Tex: Don't Want Spell Checking In Comments? ~
Some folks like to include things like source code in comments and so would
prefer that spell checking be disabled in comments in LaTeX files. To do
@@ -2631,15 +2631,15 @@
let g:tex_comment_nospell= 1
<
*tex-verb*
-Want Spell Checking in Verbatim Zones?~
+ Tex: Want Spell Checking in Verbatim Zones?~
Often verbatim regions are used for things like source code; seldom does
one want source code spell-checked. However, for those of you who do
want your verbatim zones spell-checked, put the following in your <.vimrc>: >
let g:tex_verbspell= 1
-
+<
*tex-runon*
-Run-on Comments/Math? ~
+ Tex: Run-on Comments or MathZones ~
The <syntax/tex.vim> highlighting supports TeX, LaTeX, and some AmsTeX. The
highlighting supports three primary zones/regions: normal, texZone, and
@@ -2652,7 +2652,7 @@
texMathZone.
*tex-slow*
-Slow Syntax Highlighting? ~
+ Tex: Slow Syntax Highlighting? ~
If you have a slow computer, you may wish to reduce the values for >
:syn sync maxlines=200
@@ -2662,7 +2662,7 @@
if any, is the text at the top of the screen supposed to be in?).
*tex-morecommands* *tex-package*
-Want To Highlight More Commands? ~
+ Tex: Want To Highlight More Commands? ~
LaTeX is a programmable language, and so there are thousands of packages full
of specialized LaTeX commands, syntax, and fonts. If you're using such a
@@ -2672,7 +2672,7 @@
by syntax/tex.vim.
*tex-error*
-Excessive Error Highlighting? ~
+ Tex: Excessive Error Highlighting? ~
The <tex.vim> supports lexical error checking of various sorts. Thus,
although the error checking is ofttimes very useful, it can indicate
@@ -2682,7 +2682,7 @@
and all error checking by <syntax/tex.vim> will be suppressed.
*tex-math*
-Need a new Math Group? ~
+ Tex: Need a new Math Group? ~
If you want to include a new math group in your LaTeX, the following
code shows you an example as to how you might do so: >
@@ -2697,7 +2697,7 @@
has a starred form (ie. eqnarray*).
*tex-style*
-Starting a New Style? ~
+ Tex: Starting a New Style? ~
One may use "\makeatletter" in *.tex files, thereby making the use of "@" in
commands available. However, since the *.tex file doesn't have one of the
@@ -2711,7 +2711,7 @@
always accept such use of @.
*tex-cchar* *tex-cole* *tex-conceal*
-Taking Advantage of Conceal Mode~
+ Tex: Taking Advantage of Conceal Mode~
If you have |'conceallevel'| set to 2 and if your encoding is utf-8, then a
number of character sequences can be translated into appropriate utf-8 glyphs,
@@ -2723,6 +2723,22 @@
One way to use this is to have vertically split windows (see |CTRL-W_v|); one
with |'conceallevel'| at 0 and the other at 2; and both using |'scrollbind'|.
+ *g:tex_conceal*
+ Tex: Selective Conceal Mode~
+
+You may selectively use conceal mode by setting g:tex_conceal in your
+<.vimrc>. By default it is set to "admgs" to enable conceal for the
+following sets of characters: >
+
+ a = accents/ligatures
+ d = delimiters
+ m = math symbols
+ g = Greek
+ s = superscripts/subscripts
+<
+By leaving one or more of these out, the associated conceal-character
+substitution will not be made.
+
TF *tf.vim* *ft-tf-syntax*
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 61ee4ef..7ee555f 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 7.3f. Last change: 2010 Aug 09
+*todo.txt* For Vim version 7.3f. Last change: 2010 Aug 10
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -32,11 +32,14 @@
'cursorline' stops too early in a help file, caused by conceal feature.
+Test 73 fails on MS-Windows when compiled with DJGPP.
+:find completion with 'path' set to "./**" results in full path for
+"./subdir/file", should shorten to start with "./".
+
Before release 7.3:
- Rename vim73 branch to default (hints: Xavier de Gaye, 2010 May 23)
-Test 73 fails on MS-Windows when compiled with DJGPP.
-Possibly change WIN3264 to MSWIN || MSDOS.
+Problem with \NL in Ex script. (Ray Frish, 2010 Aug 10)
Bug: E685 error for func_unref(). (ZyX, 2010 Aug 5)
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt
index 897d091..bd8879c 100644
--- a/runtime/doc/various.txt
+++ b/runtime/doc/various.txt
@@ -1,4 +1,4 @@
-*various.txt* For Vim version 7.3f. Last change: 2010 Aug 01
+*various.txt* For Vim version 7.3f. Last change: 2010 Aug 10
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -364,7 +364,7 @@
N *+path_extra* Up/downwards search in 'path' and 'tags'
m *+perl* Perl interface |perl|
m *+perl/dyn* Perl interface |perl-dynamic| |/dyn|
-H *+persistent_undo* Persistent undo |undo-persistence|
+N *+persistent_undo* Persistent undo |undo-persistence|
*+postscript* |:hardcopy| writes a PostScript file
N *+printer* |:hardcopy| command
H *+profile* |:profile| command