summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-20 21:55:45 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-20 21:55:45 +0000
commit9b2200acd6bd572eea00ea89eeb3b2c0764c8942 (patch)
tree2b51ab147338ddbae29d5586eb06ed85dd58ea00 /runtime
parent0126585dbb2a044ec2d72166dbc71cec33517194 (diff)
updated for version 7.0230
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt2
-rw-r--r--runtime/doc/makehtml.awk13
-rw-r--r--runtime/doc/options.txt2
-rw-r--r--runtime/doc/repeat.txt12
-rw-r--r--runtime/doc/tags33
-rw-r--r--runtime/plugin/README.txt1
6 files changed, 56 insertions, 7 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index f842ff6897..fa1362a46d 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -7157,7 +7157,7 @@ This is not guaranteed 100% secure, but it should block most attacks.
*sandbox-option*
A few options contain an expression. When this expression is evaluated it may
-have to be done in the sandbox to avoid a security risc. But the sandbox is
+have to be done in the sandbox to avoid a security risk. But the sandbox is
restrictive, thus this only happens when the option was set from an insecure
location. Insecure in this context are:
- sourcing a .vimrc or .exrc in the current directlry
diff --git a/runtime/doc/makehtml.awk b/runtime/doc/makehtml.awk
index 34a55445b8..5e40069391 100644
--- a/runtime/doc/makehtml.awk
+++ b/runtime/doc/makehtml.awk
@@ -135,7 +135,7 @@ NR == 1 { nf=split(FILENAME,f,".")
print "<H1>Vim documentation: " f[1] "</H1>";
print "<A NAME=\"top\"></A>";
if ( FILENAME != "help.txt" ) {
- print "<A HREF=\"help.html\">main help file</A>\n";
+ print "<A HREF=\"index.html\">main help file</A>\n";
}
print "<HR>";
print "<PRE>";
@@ -244,7 +244,15 @@ npipe > 2 && nstar < 3 {
find_tag1();
}
else {
+ if ( f[1] == "index" ) {
+ printf "|<A HREF=\"vimindex.html\">" p[i] "</A>|";
+ } else {
+ if ( f[1] == "help" ) {
+ printf "|<A HREF=\"index.html\">" p[i] "</A>|";
+ } else {
printf "|<A HREF=\"" f[1] ".html\">" p[i] "</A>|";
+ }
+ }
}
}
}
@@ -373,13 +381,12 @@ END {
#
# as main we keep index.txt (by default)
-# other candidate, help.txt
#
function topback () {
if ( FILENAME != "tags" ) {
if ( FILENAME != "help.txt" ) {
printf("<A HREF=\"#top\">top</A> - ");
- printf("<A HREF=\"help.html\">main help file</A>\n");
+ printf("<A HREF=\"index.html\">main help file</A>\n");
} else {
printf("<A HREF=\"#top\">top</A>\n");
}
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index d0c8a480ae..ae9f517a85 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1013,7 +1013,7 @@ A jump table for the options with a short description can be found at |Q_op|.
*'balloonexpr'* *'bexpr'*
'balloonexpr' 'bexpr' string (default "")
- global
+ global or local to buffer |global-local|
{not in Vi}
{only available when compiled with the |+balloon_eval|
feature}
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
index 1fe96fad39..2353d3a683 100644
--- a/runtime/doc/repeat.txt
+++ b/runtime/doc/repeat.txt
@@ -1,4 +1,4 @@
-*repeat.txt* For Vim version 7.0aa. Last change: 2006 Mar 07
+*repeat.txt* For Vim version 7.0aa. Last change: 2006 Mar 20
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -563,9 +563,17 @@ It is only included when Vim was compiled with "huge" features.
:prof[ile] start {fname} *:prof* *:profile* *E750*
Start profiling, write the output in {fname} upon exit.
- If {fname} already exists it will be overwritten.
+ If {fname} already exists it will be silently overwritten.
The variable |v:profiling| is set to one.
+:prof[ile] pause
+ Don't profile until the following ":profile continue". Can be
+ used when doing something that should not be counted (e.g., an
+ external command). Does not nest.
+
+:prof[ile] continue
+ Continue profiling after ":profile pause".
+
:prof[ile] func {pattern}
Profile function that matches the pattern {pattern}.
See |:debug-name| for how {pattern} is used.
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 4ea882b55e..15ee128534 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -2558,12 +2558,22 @@ $VIMRUNTIME starting.txt /*$VIMRUNTIME*
:sleep various.txt /*:sleep*
:sm change.txt /*:sm*
:smagic change.txt /*:smagic*
+:smap map.txt /*:smap*
+:smap_l map.txt /*:smap_l*
+:smapc map.txt /*:smapc*
+:smapclear map.txt /*:smapclear*
+:sme gui.txt /*:sme*
+:smenu gui.txt /*:smenu*
:sn windows.txt /*:sn*
:snext windows.txt /*:snext*
:sni if_sniff.txt /*:sni*
:sniff if_sniff.txt /*:sniff*
:sno change.txt /*:sno*
:snomagic change.txt /*:snomagic*
+:snor map.txt /*:snor*
+:snoremap map.txt /*:snoremap*
+:snoreme gui.txt /*:snoreme*
+:snoremenu gui.txt /*:snoremenu*
:so repeat.txt /*:so*
:sor change.txt /*:sor*
:sort change.txt /*:sort*
@@ -2607,6 +2617,10 @@ $VIMRUNTIME starting.txt /*$VIMRUNTIME*
:substitute change.txt /*:substitute*
:sun windows.txt /*:sun*
:sunhide windows.txt /*:sunhide*
+:sunm map.txt /*:sunm*
+:sunmap map.txt /*:sunmap*
+:sunme gui.txt /*:sunme*
+:sunmenu gui.txt /*:sunmenu*
:sus starting.txt /*:sus*
:suspend starting.txt /*:suspend*
:sv windows.txt /*:sv*
@@ -2839,6 +2853,21 @@ $VIMRUNTIME starting.txt /*$VIMRUNTIME*
:xa editing.txt /*:xa*
:xall editing.txt /*:xall*
:xit editing.txt /*:xit*
+:xm map.txt /*:xm*
+:xmap map.txt /*:xmap*
+:xmap_l map.txt /*:xmap_l*
+:xmapc map.txt /*:xmapc*
+:xmapclear map.txt /*:xmapclear*
+:xme gui.txt /*:xme*
+:xmenu gui.txt /*:xmenu*
+:xn map.txt /*:xn*
+:xnoremap map.txt /*:xnoremap*
+:xnoreme gui.txt /*:xnoreme*
+:xnoremenu gui.txt /*:xnoremenu*
+:xu map.txt /*:xu*
+:xunmap map.txt /*:xunmap*
+:xunme gui.txt /*:xunme*
+:xunmenu gui.txt /*:xunmenu*
:y change.txt /*:y*
:yank change.txt /*:yank*
:z various.txt /*:z*
@@ -4931,6 +4960,7 @@ edit-files editing.txt /*edit-files*
edit-intro editing.txt /*edit-intro*
edit-no-break usr_25.txt /*edit-no-break*
editing.txt editing.txt /*editing.txt*
+efm-%> quickfix.txt /*efm-%>*
efm-entries quickfix.txt /*efm-entries*
efm-ignore quickfix.txt /*efm-ignore*
eiffel.vim syntax.txt /*eiffel.vim*
@@ -5972,7 +6002,9 @@ mapmode-l map.txt /*mapmode-l*
mapmode-n map.txt /*mapmode-n*
mapmode-nvo map.txt /*mapmode-nvo*
mapmode-o map.txt /*mapmode-o*
+mapmode-s map.txt /*mapmode-s*
mapmode-v map.txt /*mapmode-v*
+mapmode-x map.txt /*mapmode-x*
mapping map.txt /*mapping*
mark motion.txt /*mark*
mark-motions motion.txt /*mark-motions*
@@ -6249,6 +6281,7 @@ new-line-continuation version5.txt /*new-line-continuation*
new-location-list version7.txt /*new-location-list*
new-manpage-trans version7.txt /*new-manpage-trans*
new-map-expression version7.txt /*new-map-expression*
+new-map-select version7.txt /*new-map-select*
new-more-highlighting version7.txt /*new-more-highlighting*
new-more-unicode version7.txt /*new-more-unicode*
new-multi-byte version5.txt /*new-multi-byte*
diff --git a/runtime/plugin/README.txt b/runtime/plugin/README.txt
index 5cc68fd4dc..cb87ed9ec8 100644
--- a/runtime/plugin/README.txt
+++ b/runtime/plugin/README.txt
@@ -8,6 +8,7 @@ netrw.vim edit files over a network and browse (remote) directories
rrhelper.vim used for --remote-wait editing
tar.vim edit (compressed) tar files
tohtml.vim convert a file with syntax highlighting to HTML
+vimball.vim create and unpack .vba files
Note: the explorer.vim plugin is no longer here, the netrw.vim plugin has
taken over browsing directories (also over ftp).