Files
neovim/runtime/plugin/netrwPlugin.vim
Christian Clason e962167245 vim-patch:9cfdabb: runtime(netrw): change netrw maintainer
Dr. Chip retired some time ago and is no longer maintaining the netrw
plugin. However as a runtime plugin distributed by Vim, it important to
maintain the netrw plugin in the future and fix bugs as they are
reported.

So, split out the netrw plugin as an additional package, however include
some stubs to make sure the plugin is still loaded by default and the
documentation is accessible as well.

closes: vim/vim#16368

9cfdabb074

Co-authored-by: Luca Saccarola <github.e41mv@aleeas.com>
2025-01-18 09:49:35 +01:00

10 lines
152 B
VimL

" Load the netrw package.
if &cp || exists("g:loaded_netrw") || exists("g:loaded_netrwPlugin")
finish
endif
packadd netrw
" vim:ts=8 sts=2 sw=2 et