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
Is it possible to show netrw buffer too?
Currently its not showing and surprise me when I do :bp the buffer switch to netrw buffer, not the buffer on tab list.
Thanks.
The text was updated successfully, but these errors were encountered:
Netrw is problematic because each directory browser uses two buffers – the listed one you navigate to, which is empty, and then another unlisted buffer, where the directory contents are actually rendered. When you try to switch to the listed buffer it catches you and switches to the unlisted one instead. It’s… weird. Because of reasons – see #25 and #31 for details.
Given that this is the third issue about Netrw support (maybe no surprise since it ships with Vim), I’m now thinking that if I can find a hack to support it anyway, I ought to. I’ll see if I can figure something out.
Plug 'ap/vim-readdir'" Assuming you use vim-plug.let g:loaded_netrw = 1let g:loaded_netrwPlugin = 1 " Don't use the built-in file browser (use vim-readdir instead).
And you get a (IMO) much nicer file browser, o and t to open files is everything I've needed so far.
The one downside is that it breaks gx to open URLs in the browser, so you'd need to use another plugin that provides that functionality (or write a little function).
Hi, thanks for the plugin!
Is it possible to show netrw buffer too?
Currently its not showing and surprise me when I do
:bp
the buffer switch to netrw buffer, not the buffer on tab list.Thanks.
The text was updated successfully, but these errors were encountered: