2020-03-31 14:30:46 +00:00
|
|
|
Index: vim-8.2.0348/runtime/syntax/sh.vim
|
2015-11-22 16:39:30 +00:00
|
|
|
===================================================================
|
2020-03-31 14:30:46 +00:00
|
|
|
--- vim-8.2.0348.orig/runtime/syntax/sh.vim
|
|
|
|
+++ vim-8.2.0348/runtime/syntax/sh.vim
|
2016-09-12 13:27:23 +00:00
|
|
|
@@ -64,6 +64,13 @@ if !exists("b:is_kornshell") && !exists(
|
2006-12-15 16:15:12 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
+" Neither is_kornshell nor is_bash was explicitly set, and
|
|
|
|
+" /bin/sh is a bash on SUSE LINUX.
|
|
|
|
+if exists("b:is_sh")
|
|
|
|
+ let b:is_bash= 1
|
|
|
|
+ unlet b:is_sh
|
|
|
|
+endif
|
|
|
|
+
|
|
|
|
" set up default g:sh_fold_enabled {{{1
|
2015-11-22 16:39:30 +00:00
|
|
|
" ================================
|
2006-12-15 16:15:12 +00:00
|
|
|
if !exists("g:sh_fold_enabled")
|