" Maintainer: This runtime file is looking for a new maintainer.
" Last Change:
" 2025 Aug 07 by Vim Project (use correct "=~#" for netrw_stylesize option #17901)
+" 2025 Aug 07 by Vim Project (netrw#BrowseX() distinguishes remote files #17794)
" Copyright: Copyright (C) 2016 Charles E. Campbell {{{1
" Permission is hereby granted to use and distribute this code,
" with or without modifications, provided that this copyright
endfunction
" netrw#BrowseX: (implements "x") executes a special "viewer" script or program for the {{{2
-" given filename; typically this means given their extension.
+" given filename; typically this means given their extension.
function netrw#BrowseX(fname)
" special core dump handler
if a:fname =~ '/core\(\.\d\+\)\=$' && exists("g:Netrw_corehandler")
let fname = substitute(fname, '^\~', expand("$HOME"), '')
endif
- call netrw#os#Open(s:NetrwFile(fname))
+ if fname =~ '^[a-z]\+://'
+ " open a remote file
+ call netrw#os#Open(fname)
+ else
+ call netrw#os#Open(s:NetrwFile(fname))
+ endif
endfunction
" s:NetrwBufRename: renames a buffer without the side effect of retaining an unlisted buffer having the old name {{{2