Skip to content

Instantly share code, notes, and snippets.

@gmarik
Created May 8, 2011 22:42
Show Gist options
  • Save gmarik/961772 to your computer and use it in GitHub Desktop.
Save gmarik/961772 to your computer and use it in GitHub Desktop.

What's new

Bundle! command

Bundle! 'my_plugin'

instructs Vundle that

  1. this plugin should not be synchronized/cloned
  2. it's located in bundles/my_plugin

Useful when you have your own 'ad-hoc' plugins.

Hooks/events

Vundle triggers a bunch of events when installing bundles. For example usage see

  1. automatic Command-T building
  2. Custom hooks.

Janus on Vundle

As result of two above features it's possible to accomplish more complex scenarious.

I've been working on porting [Janus] using Vundle. See Janus configuration with Vundle

How to check out Vundle 0.9 preview

Your configuration

$ cd ~/.vim/vundle.git
$ git pull && git checkout -b events origin/events
$ vim +BundleInstall! +q 

test configuration (just in case you want to do extra testing)

installs bundles to /tmp/vundle_bundles

$ vim -u test/vimrc +BundleInstall!

Thanks!

PS: don't forget to checkout master to get back to stable version after

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment