diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-03 17:13:03 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-03 17:13:03 +0100 |
commit | 91715873d19a1859c08eeded7848113596e2f2bd (patch) | |
tree | 59e2fa6c902756d7831f05c7ffdbce45d9a7a573 /src/proto/ex_cmds2.pro | |
parent | 863c1a9079fa340d663ccafb011729a29186d73e (diff) | |
download | vim-git-91715873d19a1859c08eeded7848113596e2f2bd.tar.gz |
patch 7.4.1480v7.4.1480
Problem: Cannot add a pack direcory without loading a plugin.
Solution: Add the :packadd command.
Diffstat (limited to 'src/proto/ex_cmds2.pro')
-rw-r--r-- | src/proto/ex_cmds2.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro index 3eabcbdb5..e10f07241 100644 --- a/src/proto/ex_cmds2.pro +++ b/src/proto/ex_cmds2.pro @@ -64,6 +64,7 @@ int source_runtime(char_u *name, int all); int do_in_runtimepath(char_u *name, int all, void (*callback)(char_u *fname, void *ck), void *cookie); void source_packages(void); void ex_loadplugin(exarg_T *eap); +void ex_packadd(exarg_T *eap); void ex_options(exarg_T *eap); void ex_source(exarg_T *eap); linenr_T *source_breakpoint(void *cookie); |