summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-21 23:02:49 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-21 23:02:49 +0100
commitf6fee0e2d4341c0c2f5339c1268e5877fafd07cf (patch)
tree86922c1a8c51e62f0369db6decc5582c01b03d2c /src/main.c
parent271273c39f2150ecdaa67fe1a2a8e9cdc63db545 (diff)
downloadvim-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 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 57aeeed5f..f19ea1d12 100644
--- a/src/main.c
+++ b/src/main.c
@@ -637,6 +637,9 @@ vim_main2(int argc UNUSED, char **argv UNUSED)
source_runtime((char_u *)"plugin/**/*.vim", TRUE);
# endif
TIME_MSG("loading plugins");
+
+ source_packages();
+ TIME_MSG("loading packages");
}
#endif