-
Notifications
You must be signed in to change notification settings - Fork 3.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
Feature/vim plug #1056
base: 3.0
Are you sure you want to change the base?
Feature/vim plug #1056
Conversation
You remove the Bundle Unbundle command. How can a user customize the plugin? |
Hi @VMatrix1900 , What I love about vim-plug is the speed itself, I keep install spf13 on every machine so the faster installation the better for me. |
What if I want to remove the plugin shipped with spf13_vim such as nerdcommenter? See |
Maybe this can be of help? junegunn/vim-plug#469 |
The point is that removing `Unbundle` function is not backward compatible. Can the `Unbundle/Bundle` function implemented using vim-plug? For Unbundle, something like `call remove(g:plus, xxxx)` will do?
… On Sep 25, 2017, at 23:07, compleatguru ***@***.***> wrote:
Maybe this can be of help? junegunn/vim-plug#469 <junegunn/vim-plug#469>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#1056 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/ADyAEzrRxkbXUZVxN6odrkZORpivKrtWks5sl8HEgaJpZM4PDj6_>.
|
Hi @VMatrix1900 , As of now the official from vim-plug, https://github.com/junegunn/vim-plug/wiki/tutorial, is to comment on those plugins that you don't need, then run :PlugClean!. The other alternative solution is to adopt junegunn/vim-plug#469 (comment) where @smancill has contributed an UnPlug function. Will this be helpful? |
Hi @VMatrix1900 and all, You can try this out by I have added UnPlug function. You may wish to refer this documentation for example of use. |
Hi! I have got Vim Plug to replace Vundle, mainly for performance due to parallel installing of the plugins.
In addition, I have updated amirh/HTML-AutoCloseTag to vim-scripts/HTML-AutoCloseTag as repo was missing.
Lastly, I have fixed on the uninstall.sh to remove .vim folder and fork files.
Hope this will be useful for the community.