]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(netrw): remove deprecated functions
authorLuca Saccarola <github.e41mv@aleeas.com>
Tue, 15 Apr 2025 18:28:09 +0000 (20:28 +0200)
committerChristian Brabandt <cb@256bit.org>
Tue, 15 Apr 2025 18:28:09 +0000 (20:28 +0200)
closes: #17124

Signed-off-by: Luca Saccarola <github.e41mv@aleeas.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/pack/dist/opt/netrw/autoload/netrw.vim

index 520a3f6059981eb287b16e35a17434f2272211d3..f2841170478eaad86f60460cc0808c84fd175dad 100644 (file)
@@ -11379,23 +11379,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
 " ==========================