From eda4118dc28b06c9cdf812f7e18e5dfbffdbb8dc Mon Sep 17 00:00:00 2001 From: Philip Kirkbride Date: Sun, 12 Mar 2017 17:56:27 -0400 Subject: [PATCH 1/3] Remove example script which breaks install According to this discussion https://github.com/VundleVim/Vundle.vim/issues/713 this plugin is simply an example, but the example seems to consistently break the installation process. If this is the case better to remove it. Another example of it causing problems: https://github.com/VundleVim/Vundle.vim/issues/784 --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 15ad130..d0e57cb 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,6 @@ " Keep Plugin commands between vundle#begin/end. " plugin on GitHub repo Plugin 'tpope/vim-fugitive' - " plugin from http://vim-scripts.org/vim/scripts.html - Plugin 'L9' " Git plugin not hosted on GitHub Plugin 'git://git.wincent.com/command-t.git' " git repos on your local machine (i.e. when working on your own plugin) From ad80eb7bf4ecc71d5bd3e91c624b8f7a9c8f2248 Mon Sep 17 00:00:00 2001 From: Philip Kirkbride Date: Wed, 29 Mar 2017 22:16:45 -0400 Subject: [PATCH 2/3] Comment instead of removing L9 plugin --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d0e57cb..6148885 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,8 @@ " Keep Plugin commands between vundle#begin/end. " plugin on GitHub repo Plugin 'tpope/vim-fugitive' + " plugin from http://vim-scripts.org/vim/scripts.html + " Plugin 'L9' " Git plugin not hosted on GitHub Plugin 'git://git.wincent.com/command-t.git' " git repos on your local machine (i.e. when working on your own plugin) From 0f443b122f0069439e6cb8158aee9eb207679e63 Mon Sep 17 00:00:00 2001 From: Philip Kirkbride Date: Thu, 30 Mar 2017 08:55:59 -0400 Subject: [PATCH 3/3] Comment other reference to L9 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6148885..1222e36 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} " Install L9 and avoid a Naming conflict if you've already installed a " different version somewhere else. - Plugin 'ascenator/L9', {'name': 'newL9'} + " Plugin 'ascenator/L9', {'name': 'newL9'} " All of your Plugins must be added before the following line call vundle#end() " required