summaryrefslogtreecommitdiffstats
path: root/runtime/doc/repeat.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-03-20 21:08:34 +0100
committerBram Moolenaar <Bram@vim.org>2016-03-20 21:08:34 +0100
commite18c0b39815c5a746887a509c2cd9f11fadaba07 (patch)
treeb94b501fcc8394a958fb44844892333b8d2b774d /runtime/doc/repeat.txt
parentbe6aa46c4d8948e164f7d181dc19ed2fc4818395 (diff)
Updated runtime files.
Diffstat (limited to 'runtime/doc/repeat.txt')
-rw-r--r--runtime/doc/repeat.txt11
1 files changed, 7 insertions, 4 deletions
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
index 9399e1f237..c8624a2666 100644
--- a/runtime/doc/repeat.txt
+++ b/runtime/doc/repeat.txt
@@ -1,4 +1,4 @@
-*repeat.txt* For Vim version 7.4. Last change: 2016 Mar 09
+*repeat.txt* For Vim version 7.4. Last change: 2016 Mar 15
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -249,15 +249,18 @@ For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
Also see |pack-add|.
+ *:packl* *:packloadall*
:packloadall[!] Load all packages in the "start" directories under
'packpath'. The directories found are added to
'runtimepath'.
- This normally done during startup, after loading your
- .vimrc file. With this command it can be done
- earlier.
+ This is normally done automatically during startup,
+ after loading your .vimrc file. With this command it
+ can be done earlier.
Packages will be loaded only once. After this command
it won't happen again. When the optional ! is added
this command will load packages even when done before.
+ An Error only causes sourcing the script where it
+ happens to be aborted, further plugins will be loaded.
See |packages|.
:scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167*