diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-21 23:02:49 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-21 23:02:49 +0100 |
commit | f6fee0e2d4341c0c2f5339c1268e5877fafd07cf (patch) | |
tree | 86922c1a8c51e62f0369db6decc5582c01b03d2c /runtime/optwin.vim | |
parent | 271273c39f2150ecdaa67fe1a2a8e9cdc63db545 (diff) | |
download | vim-git-f6fee0e2d4341c0c2f5339c1268e5877fafd07cf.tar.gz |
patch 7.4.1384v7.4.1384
Problem: It is not easy to use a set of plugins and their dependencies.
Solution: Add packages, ":loadopt", 'packpath'.
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 314e7f3e0..46a5ee034 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1,7 +1,7 @@ " These commands create the option window. " " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2015 Nov 10 +" Last Change: 2016 Feb 21 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -228,6 +228,8 @@ else endif call append("$", "runtimepath\tlist of directories used for runtime files and plugins") call <SID>OptionG("rtp", &rtp) +call append("$", "packpath\tlist of directories used for plugin packages") +call <SID>OptionG("pp", &pp) call append("$", "helpfile\tname of the main help file") call <SID>OptionG("hf", &hf) |