mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
relevant commits: - deprecate!: netrw#Launch, netrw#Open and gx mappings - refactor: move some utility functions in a private file - feat: add function to deprecate features - refactor!: remove NetrwClean command and function - refactor: use appropriate directories to store temporary files - refactor: better way to call vim.ui.open - refactor(Open): prefer lua wrapper function instead of cmdline - refactor!: drop vim 7 checks - refactor: use vim.ui.open when using neovim - refactor: remove s:CheckIfKde - refactor: balloon functionality - refactor!: remove netrw#Access function closes: #16519 Signed-off-by: Luca Saccarola <github.e41mv@aleeas.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
15 lines
248 B
VimL
15 lines
248 B
VimL
" Load the netrw package.
|
|
|
|
if !has("patch-9.1.1054") || !has('nvim')
|
|
echoerr 'netrw needs vim v9.1.1054'
|
|
finish
|
|
endif
|
|
|
|
if &cp || exists("g:loaded_netrw") || exists("g:loaded_netrwPlugin")
|
|
finish
|
|
endif
|
|
|
|
packadd netrw
|
|
|
|
" vim:ts=8 sts=2 sw=2 et
|