mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 02:34:59 -07:00
vim-patch:92b3666: runtime(netrw): only check first arg of netrw_browsex_viewer for being executable
fixes: vim/vim#16185
92b36663f8
Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
parent
d7b3add63e
commit
3d318be8cd
@ -39,6 +39,7 @@
|
||||
" 2024 Nov 23 by Vim Project: update decompress defaults (#16104)
|
||||
" 2024 Nov 23 by Vim Project: fix powershell escaping issues (#16094)
|
||||
" 2024 Dec 04 by Vim Project: do not detach for gvim (#16168)
|
||||
" 2024 Dec 08 by Vim Project: check the first arg of netrw_browsex_viewer for being executable (#16185)
|
||||
" }}}
|
||||
" Former Maintainer: Charles E Campbell
|
||||
" GetLatestVimScripts: 1075 1 :AutoInstall: netrw.vim
|
||||
@ -5071,7 +5072,9 @@ elseif executable('open')
|
||||
endif
|
||||
|
||||
fun! s:viewer()
|
||||
if exists('g:netrw_browsex_viewer') && executable(g:netrw_browsex_viewer)
|
||||
" g:netrw_browsex_viewer could be a string of program + its arguments,
|
||||
" test if first argument is executable
|
||||
if exists('g:netrw_browsex_viewer') && executable(split(g:netrw_browsex_viewer)[0])
|
||||
" extract any viewing options. Assumes that they're set apart by spaces.
|
||||
" call Decho("extract any viewing options from g:netrw_browsex_viewer<".g:netrw_browsex_viewer.">",'~'.expand("<slnum>"))
|
||||
if g:netrw_browsex_viewer =~ '\s'
|
||||
|
Loading…
Reference in New Issue
Block a user