2020-03-31 16:30:46 +02:00
|
|
|
Index: vim-8.2.0348/runtime/syntax/sh.vim
|
2015-11-22 17:39:30 +01:00
|
|
|
===================================================================
|
2020-03-31 16:30:46 +02:00
|
|
|
--- vim-8.2.0348.orig/runtime/syntax/sh.vim
|
|
|
|
+++ vim-8.2.0348/runtime/syntax/sh.vim
|
2016-09-12 15:27:23 +02:00
|
|
|
@@ -64,6 +64,13 @@ if !exists("b:is_kornshell") && !exists(
|
2006-12-15 17:15:12 +01: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 17:39:30 +01:00
|
|
|
" ================================
|
2006-12-15 17:15:12 +01:00
|
|
|
if !exists("g:sh_fold_enabled")
|