Conversation
|
I simplified BundleCommand in vim-update-bundles: bronson/vim-update-bundles@0066edb Now, if we can figure out how to make the BundleCommands run when bundles are installed, not when Vim starts, this will be finished. Any ideas? |
|
Scott, i'll make it run only on BundleInstall, hopefully tomorrow |
|
Scott, check BundleMake |
|
That seems awfully complex... Not sure I'd care to write that by hand. Also, you're probably not expecting vim-update-bundles to share this syntax? |
|
You mean the is overly complex? Oh, that's right it's incompatible...( should work aswell, but requires leading It was a quick hack(proove of concept), that's why didn't pay enough attention for details |
|
Ah, that whole first half is just searching the load path for command-t. Not as bad as I originally thought (was distracted when reading it). Will there ever be a situation where it isn't in ~/.vim/bundle/command-t? I figured the script should Curious why you git checkout master... is there a Vundle feature that changes the branch? |
The actual build script doesn't actually matter, as long as it's doing its job so i'll use your version. Also sorry for naming it |
|
BundleMake is a decent name but implies that it needs a Makefile... I could go for BundleExec. BundleCommand is so long to type. Pretty soon it's going to be PluginExec, eh? :) |
|
Please provide status update or close |
|
This pull request is now stale, and should be closed. |
This almost works... All BundleCommands run every time Vim starts, not just after bundles have been installed. Running every time Vim starts would be far too slow.
Any idea how to solve this?
Originally I thought BundleCommand should be associated with the previous Bundle and only run if the bundle it's associated with is updated. So, for example...
When command-t gets updated, the BundleCommand would be run.
Now I'm thinking that's too complex, and all BundleCommands should be run after any plugin(s) are installed. Easier to code, easier to understand.