e67ab2a476
- Update apparmor.vim to latest version (from AppArmor 4.0.2) - add support for "all" and "userns" rules, and new profile flags OBS-URL: https://build.opensuse.org/request/show/1190646 OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=863
19 lines
538 B
Diff
19 lines
538 B
Diff
Index: vim-8.2.2411/runtime/syntax/sh.vim
|
|
===================================================================
|
|
--- vim-8.2.2411.orig/runtime/syntax/sh.vim
|
|
+++ vim-8.2.2411/runtime/syntax/sh.vim
|
|
@@ -74,6 +74,13 @@ if exists("b:is_dash")
|
|
let b:is_posix= 1
|
|
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
|
|
" ================================
|
|
if !exists("g:sh_fold_enabled")
|