diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-12 20:34:27 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-12 20:34:27 +0100 |
commit | 2d8f56acb32428d0f965d42dd13b27100b46fa15 (patch) | |
tree | ced455063c579ac46ff0c7f269e4869aa6504386 /src/proto/ex_cmds2.pro | |
parent | c835293d54c223627c7d4516ee273c21a3506fa1 (diff) | |
download | vim-git-2d8f56acb32428d0f965d42dd13b27100b46fa15.tar.gz |
patch 7.4.1550v7.4.1550
Problem: Cannot load packages early.
Solution: Add the ":packloadall" command.
Diffstat (limited to 'src/proto/ex_cmds2.pro')
-rw-r--r-- | src/proto/ex_cmds2.pro | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro index e10f07241..1f1177429 100644 --- a/src/proto/ex_cmds2.pro +++ b/src/proto/ex_cmds2.pro @@ -62,8 +62,7 @@ void ex_compiler(exarg_T *eap); void ex_runtime(exarg_T *eap); 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_packloadall(exarg_T *eap); void ex_packadd(exarg_T *eap); void ex_options(exarg_T *eap); void ex_source(exarg_T *eap); |