vim-patch:54e1f56cf2a5

runtime(sh): only invoke bash help in ftplugin if it has been detected to be bash (vim/vim#13171)

54e1f56cf2

Co-authored-by: Eisuke Kawashima <e-kwsm@users.noreply.github.com>
This commit is contained in:
Christian Clason 2023-09-25 22:15:12 +02:00
parent 3387dc4a46
commit ddc147da2f

View File

@ -39,8 +39,7 @@ if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
let b:undo_ftplugin ..= " | unlet! b:browsefilter"
endif
if (exists("b:is_bash") && (b:is_bash == 1)) ||
\ (exists("b:is_sh") && (b:is_sh == 1))
if (exists("b:is_bash") && (b:is_bash == 1))
if !has("gui_running") && executable("less")
command! -buffer -nargs=1 Help silent exe '!bash -c "{ help "<args>" 2>/dev/null || man "<args>"; } | LESS= less"' | redraw!
elseif has('terminal')