summaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-12-02 00:44:04 +0000
committerBram Moolenaar <Bram@vim.org>2005-12-02 00:44:04 +0000
commitc6039d8fcbcc991de374c50f0a2f7ffb96d8437c (patch)
tree71cb54e2725079d2ecf9d1df62ac39ac385455cb /runtime/doc
parentbba577a24244bd5d95044ab4bc23628e48d1ff08 (diff)
downloadvim-git-c6039d8fcbcc991de374c50f0a2f7ffb96d8437c.tar.gz
updated for version 7.0162
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/index.txt10
-rw-r--r--runtime/doc/usr_41.txt6
2 files changed, 8 insertions, 8 deletions
diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt
index 623e61381..99fb8d04f 100644
--- a/runtime/doc/index.txt
+++ b/runtime/doc/index.txt
@@ -1,4 +1,4 @@
-*index.txt* For Vim version 7.0aa. Last change: 2005 Nov 27
+*index.txt* For Vim version 7.0aa. Last change: 2005 Nov 30
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -343,9 +343,9 @@ tag char note action in Normal mode ~
"yy"
|ZZ| ZZ store current file if modified, and exit
|ZQ| ZQ exit current file always
-|[| [{char} square bracket command (see below)
+|[| [{char} square bracket command (see |[| below)
\ not used
-|]| ]{char} square bracket command (see below)
+|]| ]{char} square bracket command (see |]| below)
|^| ^ 1 cursor to the first CHAR of the line
|_| _ 1 cursor to the first CHAR N - 1 lines lower
|`| `{a-zA-Z0-9} 1 cursor to the mark {a-zA-Z0-9}
@@ -373,7 +373,7 @@ tag char note action in Normal mode ~
|e| e 1 cursor forward to the end of word N
|f| f{char} 1 cursor to Nth occurrence of {char} to the
right
-|g| g{char} extended commands, see below
+|g| g{char} extended commands, see |g| below
|h| h 1 cursor N chars to the left
|i| i 2 insert text before the cursor N times
|j| j 1 cursor N lines downward
@@ -403,7 +403,7 @@ tag char note action in Normal mode ~
cursor [into buffer x]
|y| ["x]y{motion} yank Nmove text [into buffer x]
|yy| ["x]yy yank N lines [into buffer x]
-|z| z{char} commands starting with 'z', see below
+|z| z{char} commands starting with 'z', see |z| below
|{| { 1 cursor N paragraphs backward
|bar| | 1 cursor to column N
|}| } 1 cursor N paragraphs forward
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt
index 7084d1eab..0df95013c 100644
--- a/runtime/doc/usr_41.txt
+++ b/runtime/doc/usr_41.txt
@@ -1,4 +1,4 @@
-*usr_41.txt* For Vim version 7.0aa. Last change: 2005 Jun 09
+*usr_41.txt* For Vim version 7.0aa. Last change: 2005 Nov 30
VIM USER MANUAL - by Bram Moolenaar
@@ -2114,7 +2114,7 @@ a user to overrule or add to the default file. The default files start with: >
When you write a compiler file and put it in your personal runtime directory
(e.g., ~/.vim/compiler for Unix), you set the "current_compiler" variable to
make the default file skip the settings.
-
+ *:CompilerSet*
The second mechanism is to use ":set" for ":compiler!" and ":setlocal" for
":compiler". Vim defines the ":CompilerSet" user command for this. However,
older Vim versions don't, thus your plugin should define it then. This is an
@@ -2139,7 +2139,7 @@ that could be ~/.vim/after/compiler.
*41.14* Writing a plugin that loads quickly *write-plugin-quickload*
A plugin may grow and become quite long. The startup delay may become
-noticable, while you hardly every use the plugin. Then it's time for a
+noticeable, while you hardly every use the plugin. Then it's time for a
quickload plugin.
The basic idea is that the plugin is loaded twice. The first time user