-
Notifications
You must be signed in to change notification settings - Fork 65
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
docs: more extensions #247
Conversation
can you explain (briefly) the use case a bit more? what is the order of operations that requires this? |
There are some cases that will take much time to calculate the icons (such as getting Git status), where Of course I can use conceal to update icons, but I think it would be nice to expose some API to make it easier |
I have modified the Vimdoc and README file following your suggestion. Please check! |
I have decided to use virtual text instead for my plugin, so I don't need the function |
@brianhuster I'll be interested to hear about any ideas or work you have that explores the idea of browsing other quasi-filesystems like SSH, zip, etc. Coming up with a pattern or interface for doing that with Dirvish would open the door for fully replacing netrw (in Nvim core). |
I found this plugin It has support for SSH, Docker, as well as the file explorer Neotree by default, but it is also designed by be extensible to any other providers. |
For zip, I think this library is nice |
This PR doesn't change much, it just make the function
s:apply_icons()
global by changing its namedirvish#apply_icons()
. This allows users to have better control about when icons should be applied.An example usage of this PR is vim-dirvish-git.lua
Related to [#246]