From 8fded9837e36399c15fa4f351356ada7cee57510 Mon Sep 17 00:00:00 2001 From: Beau Date: Tue, 18 Nov 2014 12:12:38 +0000 Subject: [PATCH] Use newer Vundle syntax Vundle has deprecated the `Bundle` syntax, replacing it with `Plugin`. I've also added the abbreviated GitHub syntax (simply `username/repo`, no need to pass the full git URL). --- doc/jedi-vim.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/jedi-vim.txt b/doc/jedi-vim.txt index ed24c24..18f366f 100644 --- a/doc/jedi-vim.txt +++ b/doc/jedi-vim.txt @@ -125,11 +125,11 @@ Pathogen simplifies installation considerably. will automatically get the jedi library with the jedi-vim plugin. Add the following to the Bundles section in your .vimrc file: > - Bundle 'git://github.com/davidhalter/jedi-vim' + Plugin 'davidhalter/jedi-vim' 2. Issue the following command in Vim: > - :BundleInstall + :PluginInstall Help tags are generated automatically, so you should be good to go.