-
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
Consider renaming :Bundle to :Vundle #76
Comments
Hey Tim, thanks for stopping by! ) Well, renaming On the other hand I had ppl complaining about Also forcing ppl to update their configs might not be a very good thing to do... Possible cmd clash doesn't worry me too much, but possible conflict with vim-wizard @tpope concerns me way more 8) Pathogen led to Vundle creation, so i'm not expecting anything else than keeping up the great work! |
I am 100% for renaming to Vundle. Especially since Tim's plugin seems to interface directly to bundler, thus it makes more sense for his case. I almost always end up typing something like |
Well, you could be doing worse, at least you use No problem with the actual renaming, V being one key away from B, on QWERTY at least ... |
With regards to "forcing", a long deprecation cycle could mitigate that. Add Another idea: If there's not some use case for running
|
There is also the fact that the most likely user of Vundle is one who will be touching their config very often anyway. Also, Vundle is not 1.0 yet, so this is the time, if any, to break people's configs >:) I too, go through the same process @rson described more often than not, it's already Vundle in my head. |
+1 to a rename. The ruby "bundler" comparison is pretty apt to me - every time I introduce someone to the joy of bundler, either they ask:
|
I'd like to see it renamed to vundle as well. I also often start typing :VundleInstall and then correct myself. Vundle is awesome. tpope's plugins are awesome. Vim is awesome. Thanks for all the great stuff guys. |
+1 |
Considering the plugin's name is |
+1 as well. I am just starting to use Vundler, but thought it was very strange to have the commands "Bundle" and "BundleInstall" for a tool named "Vundler". Otherwise, totally awesome tool and thank you for building it. This completely solves my biggest major complaint about Vim, as a new switcher from TextMate. |
+1 for renaming. :D |
Right now Vundle and vim-install-bundles use the same directives ( Renaming :Bundle is not a problem, but it doesn't make sense for vim-install-bundles to use :Vundle. I could see both tools adopting something like |
I'm with @bronson on this! |
Basically we should pick/standartize the name for what we're calling |
Btw |
If I had to choose I would choose Plugin as this seems consistent with vim's own naming (plugin, ftplugin, etc.). I'm not very familiar with VAM, but even if you used the same name as VAM I think the syntax is very different if I recall correctly. I'm not sure consistency here is very important as they aren't currently interchangeable anyway. |
Agree with @rson. Syntax/usage is quite different so I don't know if it would do more good or rather more bad (confusing). Just a thought. |
Agree with @rson, keep consistency in different tools doesn't make much sense but introduce more confusion as side effect. IMHO both "Bundle" and "Vundle" are good names, they both mean "a solid collection of something", but "Plugin" and "Script" both suggest "a single file". "Plugin" also confused with Vim's plugin script, a "Bundle" or "Vundle" not have to be a plugin script, e.g. it can be a color scheme. I would suggest "Vundle" because it can means "a Vim scripts bundle", perfect explanation. And, it's a cool name, isn't it? :) But delete the "Bundle" command in |
Personally, I really like that vundle and vim-update-bundles can read the same vimrc. Eschew lock-in. I agree that Script sounds like a single text file. I don't have the same thought for Plugin, seems like that could be a whole mess of files. The first sentence in :help write-local-help seems to agree. So, I'm liking Plugin. But I agree that calling a color scheme a Plugin is a little odd. |
Geez, you guys have just about talked me onto @gmarik's original side. Having a command named Let me muddy the waters further by throwing in another possibilty: keep |
+1 for what @tpope suggests. |
+1 for renaming to :Vundle* |
Now that's something we can go with! |
+1 keep :Bundle, but switch to :VundleInstall. :D |
I think the commands should be completely changed to There is no reason for a super-strict standard on this. This is something you can expect from any vim user. The suggested naming, as I understood it, will only confuse users. |
+1 for renaming to Edit: big up :-/ Sorry, I followed the link on this page without checking the date of last comment. |
it is actually a real problem for me, when i source vimrc to reload some settings, i got:
anyone know how to deal with it? thanks |
👍 renaming to |
I don't care if |
I just ran into this issue today after installing vim-bundler. |
I've switched to https://github.com/Shougo/neobundle.vim because of this issue Cheers |
I agree too. Bundle/Vundle is confusing. |
Temporary Workaround: use a direct function call instead of the fancy Bundle syntax like this: Instead of this: |
Both bundler.vim and vundle use :Bundle This can cause issues. So I'm removing it. VundleVim/Vundle.vim#76
This has been fixed with transition to a new Plugin* interface, though Bundle api remains during transition window. See PR #403 for details. I'll close this since it is very old. The old :Bundle command remains, we will phase it out after some time. |
So lately I've been hacking on a new plugin bundler.vim, and when it came time to wrap
bundle
, I was hard-pressed to come up with an alternative to:Bundle
. So in the spirit of minimizing confusion, I humbly ask you to consider phasing out:Bundle
in favor of:Vundle
.Note that since your
:Bundle
is only run at start-up, and mine is a buffer-local command, there's no actual conflict, just the potential for confusion. So if you want a long deprecation cycle, that's fine. If you're attached to:Bundle
, that's fine. Just putting it out there.By the way, I think Vundle is a cool idea, but with pathogen.vim having been designed for exactly my use case, you probably won't see me leaving it anytime soon. :)
The text was updated successfully, but these errors were encountered: