Files
neovim/runtime/plugin/netrwPlugin.vim
Jaehwang Jung 98e51d2e0d vim-patch:6d6ec2e: runtime(netrw): correct wrong version check
The version check introduced with commit edd4ac3e8 has a logic error.
Also it should only trigger when trying to use the netrw plugin and not
always.

fixes: vim/vim#16541

6d6ec2ee05

Co-authored-by: Christian Brabandt <cb@256bit.org>
2025-09-13 13:15:48 +09: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