You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like plugin scan doesn't detect all the plugins, and detect ones that are commented out Take a look at mine repo you can see the plugin list there that are not detected:
[...]
-- status lineuse'itchyny/lightline.vim'-- use {"rebelot/heirline.nvim",-- config = function() require 'configs/heirline' end}-- ack/ag supportuse'mileszs/ack.vim'use'octol/vim-cpp-enhanced-highlight'use'nickhutchinson/vim-cmake-syntax'use'potatoesmaster/i3-vim-syntax'
[...]
Also worth noting, that it detects rebelot/heirline.nvim as installed, but in fact it is commented out.
The text was updated successfully, but these errors were encountered:
I am not planning on addressing either of these issues at the moment, they are inherent to how the parser works, and I don't find it to be important to focus on 100% accuracy.
The way the parser works is that I index rockerboo/awesome-neovim for popular plugins, then I check the config files for mentions of those plugins.
Only plugins mentioned in awesome-neovim will be identified, I hope to increase this in the future by adding more plugin sources, but it will likely never identify all plugins with 100% accuracy because I'm not planning on spinning up a full neovim instance and run an install.
Regarding commented out plugins, I'm not interested in processing an AST to identify if the plugin is commented out or not and handle it differently. I don't think it's worth the effort for now and want to focus on more valuable features. It would also increase the complexity of the code and slow down the parser.
If you care about the correctness, I suggest removing commented out plugins from your config, and once the sync supports removing plugins they will be removed from your dotfyle page.
If you have any good ideas on increasing plugin coverage please let me know.
It looks like plugin scan doesn't detect all the plugins, and detect ones that are commented out Take a look at mine repo you can see the plugin list there that are not detected:
Also worth noting, that it detects rebelot/heirline.nvim as installed, but in fact it is commented out.
The text was updated successfully, but these errors were encountered: