From a244714a1657fcc764308533e964b78f0a7b0163 Mon Sep 17 00:00:00 2001 From: sean sorrell <seansorrell@gmail.com> Date: Tue, 10 Mar 2015 18:30:12 -0700 Subject: [PATCH 1/2] Rakefile should ensure that our plugins are up to date Two changes here: use updated Vundle syntax (BundleInstall -> PluginInstall) Use the `!` option to upgrade installed plugins to latest version --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 47f81c5..0e5c6d6 100644 --- a/Rakefile +++ b/Rakefile @@ -200,7 +200,7 @@ exec /Applications/MacVim.app/Contents/MacOS/Vim "$@" task :vundle do step 'vundle' install_github_bundle 'gmarik','vundle' - sh '~/bin/vim -c "BundleInstall" -c "q" -c "q"' + sh '~/bin/vim -c "PluginInstall!" -c "q" -c "q"' end end -- GitLab From 8daff716ee1930f0b7e81138a24a0a8e8b056982 Mon Sep 17 00:00:00 2001 From: sean sorrell <seansorrell@gmail.com> Date: Tue, 10 Mar 2015 18:29:48 -0700 Subject: [PATCH 2/2] update README to capture new update behaviour --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index c5006e1..7e25578 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,15 @@ You can adjust the size of the smaller panes in `tmux.conf` by lowering or incre rake +## Update + + rake + +This will update all installed plugins using Vundle's `:PluginInstall!` +command. Any errors encountered during this process may be resolved by clearing +out the problematic directories in ~/.vim/bundle. `:help PluginInstall` +provides more detailed information about Vundle. + ## Customize In your home directory, Maximum Awesome creates `.vimrc.local`, `.vimrc.bundles.local` and `.tmux.conf.local` files where you can customize Vim and tmux to your heart’s content. However, we’d love to incorporate your changes and improve Vim and tmux -- GitLab