summaryrefslogtreecommitdiffstats
path: root/source/ap/vim/vim-sh-syntax.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-02-21 19:15:06 +0000
committer Eric Hameleers <alien@slackware.com>2023-02-21 21:32:37 +0100
commitc37e54c60e3141329d01864fdcb0d5d30518a563 (patch)
tree04869ccbb6b2f341e0cbe6ce6048ee0a2951b57a /source/ap/vim/vim-sh-syntax.patch
parent0df29e7a5daa4f286f70a66114d9a3357ab19890 (diff)
downloadcurrent-4ed7c081e6bb1466ee4ee814121af3ef86de712f.tar.gz
current-4ed7c081e6bb1466ee4ee814121af3ef86de712f.tar.xz
Tue Feb 21 19:15:06 UTC 202320230221191506
ap/vim-9.0.1337-x86_64-1.txz: Upgraded. OK, so the upstream runtime update didn't fix sh syntax highlighting, so we patched it. Thanks to marav. Also, we needed this version number. ;-) d/autoconf-archive-2023.02.20-noarch-1.txz: Upgraded. l/babl-0.1.100-x86_64-1.txz: Upgraded. l/gegl-0.4.42-x86_64-1.txz: Upgraded. x/ibus-1.5.28-x86_64-1.txz: Upgraded. x/ibus-libpinyin-1.15.1-x86_64-1.txz: Upgraded. xap/vim-gvim-9.0.1337-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/ap/vim/vim-sh-syntax.patch')
-rw-r--r--source/ap/vim/vim-sh-syntax.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/ap/vim/vim-sh-syntax.patch b/source/ap/vim/vim-sh-syntax.patch
new file mode 100644
index 000000000..9cd337333
--- /dev/null
+++ b/source/ap/vim/vim-sh-syntax.patch
@@ -0,0 +1,13 @@
+diff --git a/runtime/syntax/sh.vim b/runtime/syntax/sh.vim
+index 13d74db..4f7fafb 100644
+--- a/runtime/syntax/sh.vim
++++ b/runtime/syntax/sh.vim
+@@ -335,7 +335,7 @@ syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.' nextgroup=shComment
+ " systems too, however, so the following syntax will flag $(..) as
+ " an Error under /bin/sh. By consensus of vimdev'ers!
+ if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
+- syn region shCommandSub matchgroup=shCmdSubRegion start="\$(\ze[^(]\|$" skip='\\\\\|\\.' end=")" contains=@shCommandSubList
++ syn region shCommandSub matchgroup=shCmdSubRegion start="\$(\ze[^(]" skip='\\\\\|\\.' end=")" contains=@shCommandSubList
+ syn region shArithmetic matchgroup=shArithRegion start="\$((" skip='\\\\\|\\.' end="))" contains=@shArithList
+ syn region shArithmetic matchgroup=shArithRegion start="\$\[" skip='\\\\\|\\.' end="\]" contains=@shArithList
+ syn match shSkipInitWS contained "^\s\+"