-
Notifications
You must be signed in to change notification settings - Fork 732
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
Rule for including plugins that are not "Neovim-only" #574
Comments
I think it would be useful to lay down what the goal of this repo is. There are many valid answers here; some that I can think of:
Currently the the goal is 1, but I suspect that most of the users that visit this list think of it as 3/4 (i.e. what plugins are available?) Now that vim 9 is released and the two projects are diverging more, I do think there's a stronger case that we as a community need a list of "all plugins that support Neovim," whether that's this list or something else. A related proposal: if there are some qualities that people particularly care about (written in lua, written specifically for Neovim), perhaps we could add some sort of icon or tag system? |
Specifically, originally, was that we'd list Neovim specific (plugins that don't work on Vim) as other awesome lists (VimAwesome) exists for plugins that work for Vim. Lua is a big component, as well as using Neovim specific APIs. You could use Lua inside Vim, if you include Lua inside your Vim build. This makes it possible for some plugins to work in both Vim and Neovim and use Lua. Also, there are other languages and runtime supported via like Python, Node.js, Elixir, Go, Rust and others, that can be full plugins and be specific to Neovim. The size of this list currently is already quite large for just Neovim specific plugins that only work in Neovim. Adding all the plugins that work for Neovim and Vim would add possibly thousands of new plugins. I feel having the specific marker of Neovim specific is a unique perspective that people utilize. I believe there is some quality in having a list that includes both Neovim and Vim plugins, but I do not think this is the place for that. Vim Awesome website includes both Neovim and Vim plugins and has been around longer. There are multiple websites that use this list to inventory the current plugins. Could be a starting point to creating a better index of plugins for Vim9, Vim and Neovim, with appropriate distinction. |
I think that's a reasonable view, and I do think there's value in having a list of "all the plugins that are built specifically using Neovim features." I think it serves to highlight how the design choices being made within Neovim have enabled a flourishing plugin ecosystem, and it's nice to have those all listed together. I do agree that it would be great if there were some sort of "master list" of all the extant vim/neovim plugins, with appropriate tags for vim/nvim support, languages used, dependencies required, etc. I don't think any of the current lists/sites support that need. That's something I would love to work on, but absolutely do not have the time for :/ |
This repo's name is awesome-neovim rather than awesome-lua-neovim right? My points is:
|
A point made in #573 was that sometimes there's a Vim plugin that doesn't have a good Neovim-only counterpart. With this the focus is on Neovim-only plugins, Vim plugins that offer functionality lacking in Neovim-only plugins still have some space, and the main list won't grow any longer. |
Sounds like a good solution @tversteeg, but a user would search for a plugin in the category he expects the plugin would be, it wouldn't make sense to go to the main list category and then search for alternative at the bottom, some users might not know it even exist. Maybe instead we can add a tag |
Well, I agree with @rockerBOO's philosophy, so I would not like to mix the Neovim-only plugins with Vim plugins. I think the current criteria for the main list are fine. |
I think the idea of maintaining a list of Vimscript plugins rewrote in Lua would be an opinion and better kept as a separate thing. In some/most cases the Lua plugin isn't a direct improvement, due to if Vimscript was a determent to it's performance or quality. Like a Lua file manager might generally be better UX due to libuv integration to allow async file opening vs a Vimscript one. But a git client in Vimscript vs Lua, you're waiting on Git to run for either so its more of a UI/UX thing. I think what is generally wanted is an generalized shortlist of recommended plugins that all work inside Neovim. So possibly Vim9script plugins, Vim/Vimscript plugins, Neovim RPC plugins, Neovim Lua plugins, Neovim Vimscript plugins, Neovim Vimscript9 plugins. This list has grown into a collection of possibly awesome plugins and showing a lot of them. This allows for a list to be made of all actively updated plugins for Neovim, specifically targeting Neovim. To maintain a shortlist requires an opinion and less plugins would be relevant. I think everyone should be able to have their own list of recommendations of plugins. If you make one, we can add them to this list. I personally would love to see that. Having to sieve through their dotfiles to find their plugins and then to infer if they are using them all. They could make a shortlist of plugins they enjoy. Maybe even could be a plugin that generated a list of their plugins, that they can filter out the ones they like and use and make a list of their recommendations. Plugin idea for saving recommendations. Hopefully that perspective is understandable. I feel there is value in what you're proposing but the issue of size of this list comes in as it has been mentioned quite a bit. I would be down for promoting popular personal recommendations for like a "new to Neovim, try these short list recommendations" or something. |
Can't we just make rules to restrict vim plugins? Something like this:
If it would get out of control we can always revert this decision. By the end of the day this list is the goto list when searching for a nvim plugin. I added |
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as resolved.
This comment was marked as resolved.
As per rockerBOO#574, vim-compatible plugins are not listed in this list. The README says that this list is for plugins "mostly targeting neovim-specific features". We should update the description to avoid confusion.
As per #574, vim-compatible plugins are not listed in this list. The README says that this list is for plugins "mostly targeting neovim-specific features". We should update the description to avoid confusion.
Following the discussion in #573 after
iamcco/markdown-preview.nvim
was removed, let's continue this here.I think plugins that either have
nvim
in their name or are unique (do not have an equivalent Lua / Neovim version) should be allowed. Of course they have to work for Neovim (should not be made with Vim9Script). This can be made more strict by requiring a minimum number of stars or a similar metric. Apart frommarkdown-preview.nvim
, another example would becopilot.vim
which works for both Vim and Neovim.In that case, this rule should probably be added to
CONTRIBUTING.md
. What do you think?cc @ofirgall
The text was updated successfully, but these errors were encountered: