diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-22 02:13:00 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-22 02:13:00 +0200 |
commit | 6c1e1570b1346de0d438fbb991bddab38c228290 (patch) | |
tree | 88d74cdfeee5c6d1a188e419dced8283e5075652 /runtime/doc/repeat.txt | |
parent | adc6714aac20f5462a0ecec50ab4806b2f3ab0db (diff) | |
download | vim-git-6c1e1570b1346de0d438fbb991bddab38c228290.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/doc/repeat.txt')
-rw-r--r-- | runtime/doc/repeat.txt | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt index cc2cb7d95..b5664728b 100644 --- a/runtime/doc/repeat.txt +++ b/runtime/doc/repeat.txt @@ -1,4 +1,4 @@ -*repeat.txt* For Vim version 8.1. Last change: 2019 May 22 +*repeat.txt* For Vim version 8.1. Last change: 2019 Jun 14 VIM REFERENCE MANUAL by Bram Moolenaar @@ -280,9 +280,16 @@ For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|. 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. + Packages will be loaded only once. Using + `:packloadall` a second time will have no effect. + When the optional ! is added this command will load + packages even when done before. + + Note that when using `:packloadall` in the |vimrc| + file, the 'runtimepath' option is updated, and later + all plugins in 'runtimepath' will be loaded, which + means they are loaded again. Plugins are expected to + handle that. An error only causes sourcing the script where it happens to be aborted, further plugins will be loaded. |