Hi Bram, 2016-3-13(Sun) 6:47:40 UTC+9 Bram Moolenaar: > Patch 7.4.1553 > Problem: ":runtime" does not use 'packpath'. > Solution: Add "what" argument. > Files: src/ex_cmds2.c, src/vim.h, runtime/doc/repeat.txt, > src/testdir/test_packadd.vim > > [snip...] > --- 249,264 ---- > > Also see |pack-add|. > > + :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. > + 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. > + See |packages|.
'packloadall' is missing tags. Patch attached. -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt index 9399e1f..ccefd8d 100644 --- a/runtime/doc/repeat.txt +++ b/runtime/doc/repeat.txt @@ -249,6 +249,7 @@ 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'.
