-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Post action triggers (hook system?) #804
Comments
And maybe also allow to specify a funcref instead of external commands. Plugin 'just/plugit', { 'oninstall': './setup.sh && make', 'onupdate': function('DoSomethingAfterUpdate') } @ryanoasis Should we considerate this as blocked by #619 ? |
@vimishor Hey! Really sorry for the super relate reply. Yeah I think we are considering a LOT of non-trivial changes blocked by at least having some minimal testing in place. Trying to stay true to the desire/request of gmarik |
Just wanted to see if any progress has been made on this issue in the last two years. This would be a very useful feature for installing and updating YouCompleteMe. |
@dabelknap No but I have some interest in looking into some testing... |
Hi all, I have just created this feature. It is still very basic, but I would like to share and get some feedback before creating pull request. Install GuideReplace Vundle.vim folder. (need to delete existing)
Inside .vimrc need to apply following changes. " set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
-Plugin 'VundleVim/Vundle.vim'
+Plugin 'farhanmustar/Vundle.vim' ExampleInstall
|
Hi everyone,
I assume this feature has been mentioned/requested before but I couldn't find anything specific under wiki/FAQ/vimhelp/issues.
There are quite a few plugins out there that require manual intervention after cloning. Occasionally these actions differ between new installs and updates.
On the other hand these actions are not consistent across plugins so one may need to run a custom build script or a more standard
make
,cmake
, ...Is there any support for this in Vundle?
What I had in mind was something along the lines of:
where
oninstall
would be triggered during:PluginInstall
and 'onupdate' during:PluginUpdate
.The text was updated successfully, but these errors were encountered: