-
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
Vundle for a specific file-type #364
Comments
Vundle is not supported lazy load. So it is feature. |
But, is this possible, lazy load,load bundles at runtime ? |
If you are asking if any manager supports that, then yes. See https://github.com/Shougo/neobundle.vim. At the moment Vundle doesn't do this, so we can close this issue (note for @gmarik). It is up to planning if we put this in. |
If you want to use this feature, you should other plugin managers. |
try call vundle#installer#install_and_require('!', 'name') (command missing) which seems to work. VAM clearly separates install code from setup code which is no longer the case here. But I think the overhead is not worth discussing in the vundle case. Or use vundle emulation in VAM. |
Closing as dup of #12 |
I tried this in
.vimrc
:and
'ervandew/supertab'
also lists in 'BundleList` in a python file. It doesn't work. I don't know why. Maybe my autocmd command was wrong?I suspect the assignments are going away. When I do just
Bundle 'ervandew/supertab'
, I can see variables in vim. For example:let SuperTabMappingForward
showsSuperTabMappingForward <tab>
. But with autocmd, I getE121: Undefined variable: SuperTabMappingForward
.My vim knowledge in limited!
The text was updated successfully, but these errors were encountered: