From f0673947837e97340e886714edff997af82e023e Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 6 Jan 2014 16:01:41 +0900 Subject: [PATCH] Remove dependency resolution section (link to wiki) --- README.md | 27 ++------------------------- 1 file changed, 2 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 7ba4502..53d89a4 100644 --- a/README.md +++ b/README.md @@ -81,31 +81,8 @@ call plug#end() ### Dependency resolution -If a Vim plugin specifies its dependent plugins in `Plugfile` in its root -directory, vim-plug will automatically source it recursively during the -installation. - -A `Plugfile` should contain a set of `Plug` commands for the dependent plugins. - -I've created three dummy repositories with Plugfiles as an example to this -scheme. - -- [junegunn/dummy1](https://github.com/junegunn/dummy1/blob/master/Plugfile) - - Plugfile includes `Plug 'junegunn/dummy2'` -- [junegunn/dummy2](https://github.com/junegunn/dummy2/blob/master/Plugfile) - - Plugfile includes `Plug 'junegunn/dummy3'` -- [junegunn/dummy3](https://github.com/junegunn/dummy3/blob/master/Plugfile) - -If you put `Plug 'junegunn/dummy1'` in your configuration file, reload it, and -run `:PlugInstall`, - -1. vim-plug first installs dummy1 -2. And sees if the repository has Plugfile -3. Plugfile is loaded and vim-plug discovers dependent plugins -4. Dependent plugins are then installed as well, and their Plugfiles are - examined and their dependencies are resolved recursively. - -![](https://raw.github.com/junegunn/vim-plug/master/gif/Plugfile.gif) +See [Dependency +Resolution](https://github.com/junegunn/vim-plug/wiki/Dependency-Resolution). ### Articles