diff --git a/runtime/autoload/dist/ft.vim b/runtime/autoload/dist/ft.vim index 8f744457ca..c40e0c84d5 100644 --- a/runtime/autoload/dist/ft.vim +++ b/runtime/autoload/dist/ft.vim @@ -712,7 +712,8 @@ export def SetFileTypeSH(name: string) if exists("b:is_sh") unlet b:is_sh endif - elseif name =~ '\' + elseif name =~ '\' || name =~ '\' + # Ubuntu links "sh" to "dash", thus it is expected to work the same way b:is_sh = 1 if exists("b:is_kornshell") unlet b:is_kornshell diff --git a/runtime/autoload/dist/script.vim b/runtime/autoload/dist/script.vim index 9e41969777..8c5441cc82 100644 --- a/runtime/autoload/dist/script.vim +++ b/runtime/autoload/dist/script.vim @@ -53,8 +53,8 @@ def DetectFromHashBang(firstline: string) name = 'wish' endif - # Bourne-like shell scripts: bash bash2 ksh ksh93 sh - if name =~ '^\(bash\d*\|\|ksh\d*\|sh\)\>' + # Bourne-like shell scripts: bash bash2 dash ksh ksh93 sh + if name =~ '^\(bash\d*\|dash\|ksh\d*\|sh\)\>' call dist#ft#SetFileTypeSH(line1) # csh scripts diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim index c7c494aaa5..765ee89207 100644 --- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -704,6 +704,13 @@ let s:script_checks = { \ ['__libc_start_main and something']], \ 'clojure': [['#!/path/clojure']], \ 'scala': [['#!/path/scala']], + \ 'sh': [['#!/path/sh'], + \ ['#!/path/bash'], + \ ['#!/path/bash2'], + \ ['#!/path/dash'], + \ ['#!/path/ksh'], + \ ['#!/path/ksh93']], + \ 'csh': [['#!/path/csh']], \ 'tcsh': [['#!/path/tcsh']], \ 'zsh': [['#!/path/zsh']], \ 'tcl': [['#!/path/tclsh'], diff --git a/src/version.c b/src/version.c index 55f363fb18..42a7e46b6c 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 935, /**/ 934, /**/