commit 4d8b2be77e561229549e6d7f07a920420ad2eba4
parent fb9457c23bfa60e60d7099dcf6bde0e88e231348
Author: Jaehwang Jung <tomtomjhj@gmail.com>
Date: Sat, 13 Sep 2025 01:28:04 +0900
vim-patch:839fd94: runtime(netrw): remove deprecated functions
closes: vim/vim#17124
https://github.com/vim/vim/commit/839fd942654b2a7c90ad0633b1c8bb9da4094cbb
Co-authored-by: Luca Saccarola <github.e41mv@aleeas.com>
Diffstat:
1 file changed, 0 insertions(+), 17 deletions(-)
diff --git a/runtime/pack/dist/opt/netrw/autoload/netrw.vim b/runtime/pack/dist/opt/netrw/autoload/netrw.vim
@@ -11383,23 +11383,6 @@ endfun
" Deprecated: {{{1
-function! netrw#Launch(args)
- call netrw#msg#Deprecate('netrw#Launch', 'v180', {'vim': 'dist#vim9#Launch', 'nvim': 'vim.system'})
- if !has('nvim')
- call dist#vim9#Launch(args)
- endif
-endfunction
-
-function! netrw#Open(file)
- call netrw#msg#Deprecate('netrw#Open', 'v180', {'vim': 'dist#vim9#Open', 'nvim': 'vim.ui.open'})
- call netrw#os#Open(a:file)
-endfunction
-
-function! netrw#WinPath(path)
- call netrw#msg#Deprecate('netrw#WinPath', 'v180', {})
- call netrw#fs#WinPath(a:path)
-endfunction
-
" }}}
" Settings Restoration: {{{1
" ==========================