blob: a83c020c91c23a5a7b54d995f47a6b18f63b7ede [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim syntax file
2" Language: shell (sh) Korn shell (ksh) bash (sh)
Bram Moolenaar1d9215b2020-01-25 13:27:42 +01003" Maintainer: Charles E. Campbell <NcampObell@SdrPchip.AorgM-NOSPAM>
Bram Moolenaar071d4272004-06-13 20:20:40 +00004" Previous Maintainer: Lennart Schultz <Lennart.Schultz@ecmwf.int>
Bram Moolenaar71badf92023-04-22 22:40:14 +01005" Last Change: Feb 28, 2023
6" Version: 208
Bram Moolenaare2719092015-01-10 15:09:25 +01007" URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_SH
8" For options and settings, please use: :help ft-sh-syntax
Bram Moolenaar23515b42020-11-29 14:36:24 +01009" This file includes many ideas from Eric Brunet (eric.brunet@ens.fr) and heredoc fixes from Felipe Contreras
Bram Moolenaar071d4272004-06-13 20:20:40 +000010
Bram Moolenaarf37506f2016-08-31 22:22:10 +020011" quit when a syntax file was already loaded {{{1
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020012if exists("b:current_syntax")
Bram Moolenaar071d4272004-06-13 20:20:40 +000013 finish
14endif
15
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020016" If the shell script itself specifies which shell to use, use it
17if getline(1) =~ '\<ksh\>'
Bram Moolenaar91c49372016-05-08 09:50:29 +020018 let b:is_kornshell = 1
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020019elseif getline(1) =~ '\<bash\>'
Bram Moolenaar91c49372016-05-08 09:50:29 +020020 let b:is_bash = 1
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020021elseif getline(1) =~ '\<dash\>'
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020022 let b:is_dash = 1
23elseif !exists("g:is_kornshell") && !exists("g:is_bash") && !exists("g:is_posix") && !exists("g:is_sh") && !exists("g:is_dash")
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020024 " user did not specify which shell to use, and
25 " the script itself does not specify which shell to use. FYI: /bin/sh is ambiguous.
26 " Assuming /bin/sh is executable, and if its a link, find out what it links to.
Bram Moolenaarbc488a72013-07-05 21:01:22 +020027 let s:shell = ""
Bram Moolenaard960d762011-09-21 19:22:10 +020028 if executable("/bin/sh")
Bram Moolenaarbc488a72013-07-05 21:01:22 +020029 let s:shell = resolve("/bin/sh")
Bram Moolenaard960d762011-09-21 19:22:10 +020030 elseif executable("/usr/bin/sh")
Bram Moolenaarbc488a72013-07-05 21:01:22 +020031 let s:shell = resolve("/usr/bin/sh")
Bram Moolenaard960d762011-09-21 19:22:10 +020032 endif
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020033 if s:shell =~ '\<ksh\>'
Bram Moolenaar91c49372016-05-08 09:50:29 +020034 let b:is_kornshell= 1
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020035 elseif s:shell =~ '\<bash\>'
Bram Moolenaar91c49372016-05-08 09:50:29 +020036 let b:is_bash = 1
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020037 elseif s:shell =~ '\<dash\>'
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020038 let b:is_dash = 1
Bram Moolenaarbc488a72013-07-05 21:01:22 +020039 endif
40 unlet s:shell
Bram Moolenaard960d762011-09-21 19:22:10 +020041endif
42
Bram Moolenaard4755bb2004-09-02 19:12:26 +000043" handling /bin/sh with is_kornshell/is_sh {{{1
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020044" b:is_sh will be set when "#! /bin/sh" is found;
Bram Moolenaar071d4272004-06-13 20:20:40 +000045" However, it often is just a masquerade by bash (typically Linux)
46" or kornshell (typically workstations with Posix "sh").
Bram Moolenaard960d762011-09-21 19:22:10 +020047" So, when the user sets "g:is_bash", "g:is_kornshell",
48" or "g:is_posix", a b:is_sh is converted into b:is_bash/b:is_kornshell,
Bram Moolenaar071d4272004-06-13 20:20:40 +000049" respectively.
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020050if !exists("b:is_kornshell") && !exists("b:is_bash") && !exists("b:is_dash")
Bram Moolenaar7fc904b2006-04-13 20:37:35 +000051 if exists("g:is_posix") && !exists("g:is_kornshell")
52 let g:is_kornshell= g:is_posix
53 endif
54 if exists("g:is_kornshell")
Bram Moolenaar071d4272004-06-13 20:20:40 +000055 let b:is_kornshell= 1
56 if exists("b:is_sh")
57 unlet b:is_sh
58 endif
Bram Moolenaar7fc904b2006-04-13 20:37:35 +000059 elseif exists("g:is_bash")
Bram Moolenaar071d4272004-06-13 20:20:40 +000060 let b:is_bash= 1
61 if exists("b:is_sh")
62 unlet b:is_sh
63 endif
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020064 elseif exists("g:is_dash")
65 let b:is_dash= 1
66 if exists("b:is_sh")
67 unlet b:is_sh
68 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000069 else
70 let b:is_sh= 1
71 endif
72endif
73
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020074" if b:is_dash, set b:is_posix too
75if exists("b:is_dash")
76 let b:is_posix= 1
77endif
78
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000079" set up default g:sh_fold_enabled {{{1
Bram Moolenaarb4ff5182015-11-10 21:15:48 +010080" ================================
Bram Moolenaar071d4272004-06-13 20:20:40 +000081if !exists("g:sh_fold_enabled")
82 let g:sh_fold_enabled= 0
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000083elseif g:sh_fold_enabled != 0 && !has("folding")
84 let g:sh_fold_enabled= 0
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000085 echomsg "Ignoring g:sh_fold_enabled=".g:sh_fold_enabled."; need to re-compile vim for +fold support"
86endif
Bram Moolenaar86b48162022-12-06 18:20:10 +000087let s:sh_fold_functions= and(g:sh_fold_enabled,1)
88let s:sh_fold_heredoc = and(g:sh_fold_enabled,2)
89let s:sh_fold_ifdofor = and(g:sh_fold_enabled,4)
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000090if g:sh_fold_enabled && &fdm == "manual"
Bram Moolenaar97d62492012-11-15 21:28:22 +010091 " Given that the user provided g:sh_fold_enabled
92 " AND g:sh_fold_enabled is manual (usual default)
93 " implies a desire for syntax-based folding
94 setl fdm=syntax
Bram Moolenaar071d4272004-06-13 20:20:40 +000095endif
96
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020097" set up the syntax-highlighting for iskeyword
Bram Moolenaar723dd942019-04-04 13:11:03 +020098if (v:version == 704 && has("patch-7.4.1142")) || v:version > 704
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020099 if !exists("g:sh_syntax_isk") || (exists("g:sh_syntax_isk") && g:sh_syntax_isk)
100 if exists("b:is_bash")
101 exe "syn iskeyword ".&iskeyword.",-,:"
102 else
103 exe "syn iskeyword ".&iskeyword.",-"
104 endif
Bram Moolenaar91c49372016-05-08 09:50:29 +0200105 endif
Bram Moolenaare0fa3742016-02-20 15:47:01 +0100106endif
107
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100108" Set up folding commands for shell {{{1
109" =================================
Bram Moolenaar86b48162022-12-06 18:20:10 +0000110sil! delc ShFoldFunctions
111sil! delc ShFoldHereDoc
112sil! delc ShFoldIfDoFor
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100113if s:sh_fold_functions
114 com! -nargs=* ShFoldFunctions <args> fold
115else
116 com! -nargs=* ShFoldFunctions <args>
117endif
118if s:sh_fold_heredoc
119 com! -nargs=* ShFoldHereDoc <args> fold
120else
121 com! -nargs=* ShFoldHereDoc <args>
122endif
123if s:sh_fold_ifdofor
124 com! -nargs=* ShFoldIfDoFor <args> fold
125else
126 com! -nargs=* ShFoldIfDoFor <args>
127endif
128
Bram Moolenaarcd71fa32005-03-11 22:46:48 +0000129" sh syntax is case sensitive {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130syn case match
131
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000132" Clusters: contains=@... clusters {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133"==================================
Bram Moolenaar5c736222010-01-06 20:54:52 +0100134syn cluster shErrorList contains=shDoError,shIfError,shInError,shCaseError,shEsacError,shCurlyError,shParenError,shTestError,shOK
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200135if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000136 syn cluster ErrorList add=shDTestError
137endif
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100138syn cluster shArithParenList contains=shArithmetic,shArithParen,shCaseEsac,shComment,shDeref,shDo,shDerefSimple,shEcho,shEscape,shNumber,shOperator,shPosnParm,shExSingleQuote,shExDoubleQuote,shHereString,shRedir,shSingleQuote,shDoubleQuote,shStatement,shVariable,shAlias,shTest,shCtrlSeq,shSpecial,shParen,bashSpecialVariables,bashStatement,shIf,shFor,shFunctionKey,shFunctionOne,shFunctionTwo
Bram Moolenaarc236c162008-07-13 17:41:49 +0000139syn cluster shArithList contains=@shArithParenList,shParenError
Bram Moolenaard2855f52018-07-31 22:23:58 +0200140syn cluster shCaseEsacList contains=shCaseStart,shCaseLabel,shCase,shCaseBar,shCaseIn,shComment,shDeref,shDerefSimple,shCaseCommandSub,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote,shCtrlSeq,@shErrorList,shStringSpecial,shCaseRange
Bram Moolenaar0daafaa2022-09-04 17:45:43 +0100141syn cluster shCaseList contains=@shCommandSubList,shCaseEsac,shColon,shCommandSub,shCommandSubBQ,shComment,shDblBrace,shDo,shEcho,shExpr,shFor,shHereDoc,shIf,shHereString,shRedir,shSetList,shSource,shStatement,shVariable,shCtrlSeq
Bram Moolenaar23515b42020-11-29 14:36:24 +0100142if exists("b:is_kornshell") || exists("b:is_bash")
Lucien Grondin1858e2b2023-11-02 20:33:56 +0100143 syn cluster shCaseList add=shForPP,shDblParen
Bram Moolenaar23515b42020-11-29 14:36:24 +0100144endif
Bram Moolenaard2855f52018-07-31 22:23:58 +0200145syn cluster shCommandSubList contains=shAlias,shArithmetic,shCmdParenRegion,shCommandSub,shComment,shCtrlSeq,shDeref,shDerefSimple,shDoubleQuote,shEcho,shEscape,shExDoubleQuote,shExpr,shExSingleQuote,shHereDoc,shNumber,shOperator,shOption,shPosnParm,shHereString,shRedir,shSingleQuote,shSpecial,shStatement,shSubSh,shTest,shVariable
Bram Moolenaar572cb562005-08-05 21:35:02 +0000146syn cluster shCurlyList contains=shNumber,shComma,shDeref,shDerefSimple,shDerefSpecial
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100147" COMBAK: removing shEscape from shDblQuoteList fails ksh04:43 -- Jun 09, 2022: I don't see the problem with ksh04, so am reinstating shEscape
148syn cluster shDblQuoteList contains=shArithmetic,shCommandSub,shCommandSubBQ,shDeref,shDerefSimple,shEscape,shPosnParm,shCtrlSeq,shSpecial,shSpecialDQ
Bram Moolenaaracb4f222016-01-10 15:59:26 +0100149syn cluster shDerefList contains=shDeref,shDerefSimple,shDerefVar,shDerefSpecial,shDerefWordError,shDerefPSR,shDerefPPS
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200150syn cluster shDerefVarList contains=shDerefOffset,shDerefOp,shDerefVarArray,shDerefOpError
Bram Moolenaard2855f52018-07-31 22:23:58 +0200151syn cluster shEchoList contains=shArithmetic,shCommandSub,shCommandSubBQ,shDeref,shDerefSimple,shEscape,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shCtrlSeq,shEchoQuote
Bram Moolenaare90ee312010-08-05 22:08:47 +0200152syn cluster shExprList1 contains=shCharClass,shNumber,shOperator,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shExpr,shDblBrace,shDeref,shDerefSimple,shCtrlSeq
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000153syn cluster shExprList2 contains=@shExprList1,@shCaseList,shTest
Bram Moolenaard2855f52018-07-31 22:23:58 +0200154syn cluster shFunctionList contains=@shCommandSubList,shCaseEsac,shColon,shComment,shDo,shEcho,shExpr,shFor,shHereDoc,shIf,shOption,shHereString,shRedir,shSetList,shSource,shStatement,shVariable,shOperator,shCtrlSeq
Bram Moolenaar7263a772007-05-10 17:35:54 +0000155if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaar23515b42020-11-29 14:36:24 +0100156 syn cluster shFunctionList add=shRepeat,shDblBrace,shDblParen,shForPP
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100157 syn cluster shDerefList add=shCommandSubList,shEchoDeref
Bram Moolenaar7263a772007-05-10 17:35:54 +0000158endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159syn cluster shHereBeginList contains=@shCommandSubList
160syn cluster shHereList contains=shBeginHere,shHerePayload
161syn cluster shHereListDQ contains=shBeginHere,@shDblQuoteList,shHerePayload
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100162syn cluster shIdList contains=shArithmetic,shCommandSub,shCommandSubBQ,shWrapLineOperator,shSetOption,shComment,shDeref,shDerefSimple,shHereString,shNumber,shOperator,shRedir,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shExpr,shCtrlSeq,shStringSpecial,shAtExpr
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200163syn cluster shIfList contains=@shLoopList,shDblBrace,shDblParen,shFunctionKey,shFunctionOne,shFunctionTwo
Bram Moolenaar23515b42020-11-29 14:36:24 +0100164syn cluster shLoopList contains=@shCaseList,@shErrorList,shCaseEsac,shConditional,shDblBrace,shExpr,shFor,shIf,shOption,shSet,shTest,shTestOpr,shTouch
165if exists("b:is_kornshell") || exists("b:is_bash")
Lucien Grondina390e982023-10-28 21:40:48 +0200166 syn cluster shLoopList add=shForPP,shDblParen
Bram Moolenaar23515b42020-11-29 14:36:24 +0100167endif
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100168syn cluster shPPSLeftList contains=shAlias,shArithmetic,shCmdParenRegion,shCommandSub,shCtrlSeq,shDeref,shDerefSimple,shDoubleQuote,shEcho,shEscape,shExDoubleQuote,shExpr,shExSingleQuote,shHereDoc,shNumber,shOperator,shOption,shPosnParm,shHereString,shRedir,shSingleQuote,shSpecial,shStatement,shSubSh,shTest,shVariable
Bram Moolenaardd60c362023-02-27 15:49:53 +0000169syn cluster shPPSRightList contains=shDeref,shDerefSimple,shEscape,shPosnParm
Bram Moolenaard2855f52018-07-31 22:23:58 +0200170syn cluster shSubShList contains=@shCommandSubList,shCommandSubBQ,shCaseEsac,shColon,shCommandSub,shComment,shDo,shEcho,shExpr,shFor,shIf,shHereString,shRedir,shSetList,shSource,shStatement,shVariable,shCtrlSeq,shOperator
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100171syn cluster shTestList contains=shArithmetic,shCharClass,shCommandSub,shCommandSubBQ,shCtrlSeq,shDeref,shDerefSimple,shDoubleQuote,shSpecialDQ,shExDoubleQuote,shExpr,shExSingleQuote,shNumber,shOperator,shSingleQuote,shTest,shTestOpr
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100172syn cluster shNoZSList contains=shSpecialNoZS
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200173syn cluster shForList contains=shTestOpr,shNumber,shDerefSimple,shDeref,shCommandSub,shCommandSubBQ,shArithmetic
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100174
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000175" Echo: {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176" ====
177" This one is needed INSIDE a CommandSub, so that `echo bla` be correct
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100178syn region shEcho matchgroup=shStatement start="\<echo\>" skip="\\$" matchgroup=shEchoDelim end="$" matchgroup=NONE end="[<>;&|()`]"me=e-1 end="\d[<>]"me=e-2 end="#"me=e-1 contains=@shEchoList skipwhite nextgroup=shQuickComment
179syn region shEcho matchgroup=shStatement start="\<print\>" skip="\\$" matchgroup=shEchoDelim end="$" matchgroup=NONE end="[<>;&|()`]"me=e-1 end="\d[<>]"me=e-2 end="#"me=e-1 contains=@shEchoList skipwhite nextgroup=shQuickComment
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100180if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
181 syn region shEchoDeref contained matchgroup=shStatement start="\<echo\>" skip="\\$" matchgroup=shEchoDelim end="$" end="[<>;&|()`}]"me=e-1 end="\d[<>]"me=e-2 end="#"me=e-1 contains=@shEchoList skipwhite nextgroup=shQuickComment
182 syn region shEchoDeref contained matchgroup=shStatement start="\<print\>" skip="\\$" matchgroup=shEchoDelim end="$" end="[<>;&|()`}]"me=e-1 end="\d[<>]"me=e-2 end="#"me=e-1 contains=@shEchoList skipwhite nextgroup=shQuickComment
183endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100184syn match shEchoQuote contained '\%(\\\\\)*\\["`'()]'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185
Bram Moolenaarc236c162008-07-13 17:41:49 +0000186" This must be after the strings, so that ... \" will be correct
Bram Moolenaare90ee312010-08-05 22:08:47 +0200187syn region shEmbeddedEcho contained matchgroup=shStatement start="\<print\>" skip="\\$" matchgroup=shEchoDelim end="$" matchgroup=NONE end="[<>;&|`)]"me=e-1 end="\d[<>]"me=e-2 end="\s#"me=e-2 contains=shNumber,shExSingleQuote,shSingleQuote,shDeref,shDerefSimple,shSpecialVar,shOperator,shExDoubleQuote,shDoubleQuote,shCharClass,shCtrlSeq
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000189" Alias: {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190" =====
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200191if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 syn match shStatement "\<alias\>"
Bram Moolenaarbe4e0162023-02-02 13:59:48 +0000193 syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]*\)\@=" skip="\\$" end="\>\|`"
194 syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]*=\)\@=" skip="\\$" end="="
195" syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+\)\@=" skip="\\$" end="\>\|`"
196" syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+=\)\@=" skip="\\$" end="="
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100197
198 " Touch: {{{1
199 " =====
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200200 syn match shTouch '\<touch\>[^;#]*' skipwhite nextgroup=shComment contains=shTouchCmd,shDoubleQuote,shSingleQuote,shDeref,shDerefSimple
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100201 syn match shTouchCmd '\<touch\>' contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202endif
203
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000204" Error Codes: {{{1
205" ============
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100206if !exists("g:sh_no_error")
Bram Moolenaare2719092015-01-10 15:09:25 +0100207 syn match shDoError "\<done\>"
208 syn match shIfError "\<fi\>"
209 syn match shInError "\<in\>"
210 syn match shCaseError ";;"
211 syn match shEsacError "\<esac\>"
212 syn match shCurlyError "}"
213 syn match shParenError ")"
214 syn match shOK '\.\(done\|fi\|in\|esac\)'
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200215 if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaare2719092015-01-10 15:09:25 +0100216 syn match shDTestError "]]"
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100217 endif
Bram Moolenaare2719092015-01-10 15:09:25 +0100218 syn match shTestError "]"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220
Bram Moolenaarc236c162008-07-13 17:41:49 +0000221" Options: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000222" ====================
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200223syn match shOption "\s\zs[-+][-_a-zA-Z#@]\+"
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100224syn match shOption "\s\zs--[^ \t$=`'"|);]\+"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225
Bram Moolenaar7263a772007-05-10 17:35:54 +0000226" File Redirection Highlighted As Operators: {{{1
227"===========================================
228syn match shRedir "\d\=>\(&[-0-9]\)\="
229syn match shRedir "\d\=>>-\="
230syn match shRedir "\d\=<\(&[-0-9]\)\="
231syn match shRedir "\d<<-\="
232
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000233" Operators: {{{1
234" ==========
Bram Moolenaar7263a772007-05-10 17:35:54 +0000235syn match shOperator "<<\|>>" contained
Bram Moolenaarc236c162008-07-13 17:41:49 +0000236syn match shOperator "[!&;|]" contained
237syn match shOperator "\[[[^:]\|\]]" contained
Bram Moolenaar541f92d2015-06-19 13:27:23 +0200238syn match shOperator "[-=/*+%]\==" skipwhite nextgroup=shPattern
Bram Moolenaare90ee312010-08-05 22:08:47 +0200239syn match shPattern "\<\S\+\())\)\@=" contained contains=shExSingleQuote,shSingleQuote,shExDoubleQuote,shDoubleQuote,shDeref
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000241" Subshells: {{{1
242" ==========
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200243syn region shExpr transparent matchgroup=shExprRegion start="{" end="}" contains=@shExprList2 nextgroup=shSpecialNxt
244syn region shSubSh transparent matchgroup=shSubShRegion start="[^(]\zs(" end=")" contains=@shSubShList nextgroup=shSpecialNxt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000246" Tests: {{{1
247"=======
Bram Moolenaar00a927d2010-05-14 23:24:24 +0200248syn region shExpr matchgroup=shRange start="\[" skip=+\\\\\|\\$\|\[+ end="\]" contains=@shTestList,shSpecial
Bram Moolenaar5c736222010-01-06 20:54:52 +0100249syn region shTest transparent matchgroup=shStatement start="\<test\s" skip=+\\\\\|\\$+ matchgroup=NONE end="[;&|]"me=e-1 end="$" contains=@shExprList1
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100250syn region shNoQuote start='\S' skip='\%(\\\\\)*\\.' end='\ze\s' end="\ze['"]" contained contains=shDerefSimple,shDeref
Bram Moolenaar91c49372016-05-08 09:50:29 +0200251syn match shAstQuote contained '\*\ze"' nextgroup=shString
Bram Moolenaar541f92d2015-06-19 13:27:23 +0200252syn match shTestOpr contained '[^-+/%]\zs=' skipwhite nextgroup=shTestDoubleQuote,shTestSingleQuote,shTestPattern
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100253syn match shTestOpr contained "<=\|>=\|!=\|==\|=\~\|-.\>\|-\(nt\|ot\|ef\|eq\|ne\|lt\|le\|gt\|ge\)\>\|[!<>]"
Bram Moolenaar9964e462007-05-05 17:54:07 +0000254syn match shTestPattern contained '\w\+'
Bram Moolenaar91c49372016-05-08 09:50:29 +0200255syn region shTestDoubleQuote contained start='\%(\%(\\\\\)*\\\)\@<!"' skip=+\\\\\|\\"+ end='"' contains=shDeref,shDerefSimple,shDerefSpecial
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100256syn match shTestSingleQuote contained '\\.' nextgroup=shTestSingleQuote
Bram Moolenaar9964e462007-05-05 17:54:07 +0000257syn match shTestSingleQuote contained "'[^']*'"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200259 syn region shDblBrace matchgroup=Delimiter start="\[\[" skip=+\%(\\\\\)*\\$+ end="\]\]" contains=@shTestList,shAstQuote,shNoQuote,shComment
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100260 syn region shDblParen matchgroup=Delimiter start="((" skip=+\%(\\\\\)*\\$+ end="))" contains=@shTestList,shComment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261endif
262
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000263" Character Class In Range: {{{1
264" =========================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265syn match shCharClass contained "\[:\(backspace\|escape\|return\|xdigit\|alnum\|alpha\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|tab\):\]"
266
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000267" Loops: do, if, while, until {{{1
268" ======
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100269ShFoldIfDoFor syn region shDo transparent matchgroup=shConditional start="\<do\>" matchgroup=shConditional end="\<done\>" contains=@shLoopList
270ShFoldIfDoFor syn region shIf transparent matchgroup=shConditional start="\<if\_s" matchgroup=shConditional skip=+-fi\>+ end="\<;\_s*then\>" end="\<fi\>" contains=@shIfList
271ShFoldIfDoFor syn region shFor matchgroup=shLoop start="\<for\ze\_s\s*\%(((\)\@!" end="\<in\>" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen skipwhite nextgroup=shCurlyIn
Bram Moolenaar23515b42020-11-29 14:36:24 +0100272if exists("b:is_kornshell") || exists("b:is_bash")
273 ShFoldIfDoFor syn region shForPP matchgroup=shLoop start='\<for\>\_s*((' end='))' contains=@shForList
274endif
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100275
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200276if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000277 syn cluster shCaseList add=shRepeat
278 syn cluster shFunctionList add=shRepeat
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200279 syn region shRepeat matchgroup=shLoop start="\<while\_s" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen,shDblBrace
280 syn region shRepeat matchgroup=shLoop start="\<until\_s" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen,shDblBrace
281 if !exists("b:is_posix")
282 syn region shCaseEsac matchgroup=shConditional start="\<select\s" matchgroup=shConditional end="\<in\>" end="\<do\>" contains=@shLoopList
283 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000285 syn region shRepeat matchgroup=shLoop start="\<while\_s" end="\<do\>"me=e-2 contains=@shLoopList
286 syn region shRepeat matchgroup=shLoop start="\<until\_s" end="\<do\>"me=e-2 contains=@shLoopList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287endif
Bram Moolenaar572cb562005-08-05 21:35:02 +0000288syn region shCurlyIn contained matchgroup=Delimiter start="{" end="}" contains=@shCurlyList
289syn match shComma contained ","
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000291" Case: case...esac {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292" ====
Bram Moolenaard2855f52018-07-31 22:23:58 +0200293syn match shCaseBar contained skipwhite "\(^\|[^\\]\)\(\\\\\)*\zs|" nextgroup=shCase,shCaseStart,shCaseBar,shComment,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote
294syn match shCaseStart contained skipwhite skipnl "(" nextgroup=shCase,shCaseBar
295syn match shCaseLabel contained skipwhite "\%(\\.\|[-a-zA-Z0-9_*.]\)\+" contains=shCharClass
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100296if exists("b:is_bash")
Bram Moolenaard2855f52018-07-31 22:23:58 +0200297 ShFoldIfDoFor syn region shCase contained skipwhite skipnl matchgroup=shSnglCase start="\%(\\.\|[^#$()'" \t]\)\{-}\zs)" end=";;" end=";&" end=";;&" end="esac"me=s-1 contains=@shCaseList nextgroup=shCaseStart,shCase,shComment
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100298elseif exists("b:is_kornshell")
299 ShFoldIfDoFor syn region shCase contained skipwhite skipnl matchgroup=shSnglCase start="\%(\\.\|[^#$()'" \t]\)\{-}\zs)" end=";;" end=";&" end="esac"me=s-1 contains=@shCaseList nextgroup=shCaseStart,shCase,shComment
Bram Moolenaard2855f52018-07-31 22:23:58 +0200300else
301 ShFoldIfDoFor syn region shCase contained skipwhite skipnl matchgroup=shSnglCase start="\%(\\.\|[^#$()'" \t]\)\{-}\zs)" end=";;" end="esac"me=s-1 contains=@shCaseList nextgroup=shCaseStart,shCase,shComment
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100302endif
Bram Moolenaard2855f52018-07-31 22:23:58 +0200303ShFoldIfDoFor syn region shCaseEsac matchgroup=shConditional start="\<case\>" end="\<esac\>" contains=@shCaseEsacList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100304
Bram Moolenaardf177f62005-02-22 08:39:57 +0000305syn keyword shCaseIn contained skipwhite skipnl in nextgroup=shCase,shCaseStart,shCaseBar,shComment,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100306if exists("b:is_bash") || exists("b:is_kornshell")
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200307 syn region shCaseExSingleQuote matchgroup=shQuote start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial,shSpecial skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100308elseif !exists("g:sh_no_error")
Bram Moolenaardf177f62005-02-22 08:39:57 +0000309 syn region shCaseExSingleQuote matchgroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
310endif
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200311syn region shCaseSingleQuote matchgroup=shQuote start=+'+ end=+'+ contains=shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
312syn region shCaseDoubleQuote matchgroup=shQuote start=+"+ skip=+\\\\\|\\.+ end=+"+ contains=@shDblQuoteList,shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313syn region shCaseCommandSub start=+`+ skip=+\\\\\|\\.+ end=+`+ contains=@shCommandSubList skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar97d62492012-11-15 21:28:22 +0100314if exists("b:is_bash")
315 syn region shCaseRange matchgroup=Delimiter start=+\[+ skip=+\\\\+ end=+\]+ contained contains=shCharClass
316 syn match shCharClass '\[:\%(alnum\|alpha\|ascii\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|word\|or\|xdigit\):\]' contained
317else
318 syn region shCaseRange matchgroup=Delimiter start=+\[+ skip=+\\\\+ end=+\]+ contained
319endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000320" Misc: {{{1
321"======
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322syn match shWrapLineOperator "\\$"
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200323syn region shCommandSubBQ start="`" skip="\\\\\|\\." end="`" contains=shBQComment,@shCommandSubList
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100324"COMBAK: see ksh13:50
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100325"syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.' nextgroup=shSingleQuote,shDoubleQuote,shComment
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100326"COMBAK: see sh11:27
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100327syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.' nextgroup=shComment
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100328"COMBAK: see ksh13:53
329"syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000331" $() and $(()): {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332" $(..) is not supported by sh (Bourne shell). However, apparently
333" some systems (HP?) have as their /bin/sh a (link to) Korn shell
334" (ie. Posix compliant shell). /bin/ksh should work for those
335" systems too, however, so the following syntax will flag $(..) as
336" an Error under /bin/sh. By consensus of vimdev'ers!
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100337if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
Bram Moolenaardd60c362023-02-27 15:49:53 +0000338 syn region shCommandSub matchgroup=shCmdSubRegion start="\$(\ze[^(]" skip='\\\\\|\\.' end=")" contains=@shCommandSubList
Bram Moolenaarc236c162008-07-13 17:41:49 +0000339 syn region shArithmetic matchgroup=shArithRegion start="\$((" skip='\\\\\|\\.' end="))" contains=@shArithList
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200340 syn region shArithmetic matchgroup=shArithRegion start="\$\[" skip='\\\\\|\\.' end="\]" contains=@shArithList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 syn match shSkipInitWS contained "^\s\+"
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100342 syn region shArithParen matchgroup=shArithRegion contained start="(" end=")" contains=@shArithParenList
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100343elseif !exists("g:sh_no_error")
Bram Moolenaardf177f62005-02-22 08:39:57 +0000344 syn region shCommandSub matchgroup=Error start="\$(" end=")" contains=@shCommandSubList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345endif
Bram Moolenaare2719092015-01-10 15:09:25 +0100346syn region shCmdParenRegion matchgroup=shCmdSubRegion start="(\ze[^(]" skip='\\\\\|\\.' end=")" contains=@shCommandSubList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347
348if exists("b:is_bash")
349 syn cluster shCommandSubList add=bashSpecialVariables,bashStatement
350 syn cluster shCaseList add=bashAdminStatement,bashStatement
Bram Moolenaard960d762011-09-21 19:22:10 +0200351 syn keyword bashSpecialVariables contained auto_resume BASH BASH_ALIASES BASH_ALIASES BASH_ARGC BASH_ARGC BASH_ARGV BASH_ARGV BASH_CMDS BASH_CMDS BASH_COMMAND BASH_COMMAND BASH_ENV BASH_EXECUTION_STRING BASH_EXECUTION_STRING BASH_LINENO BASH_LINENO BASHOPTS BASHOPTS BASHPID BASHPID BASH_REMATCH BASH_REMATCH BASH_SOURCE BASH_SOURCE BASH_SUBSHELL BASH_SUBSHELL BASH_VERSINFO BASH_VERSION BASH_XTRACEFD BASH_XTRACEFD CDPATH COLUMNS COLUMNS COMP_CWORD COMP_CWORD COMP_KEY COMP_KEY COMP_LINE COMP_LINE COMP_POINT COMP_POINT COMPREPLY COMPREPLY COMP_TYPE COMP_TYPE COMP_WORDBREAKS COMP_WORDBREAKS COMP_WORDS COMP_WORDS COPROC COPROC DIRSTACK EMACS EMACS ENV ENV EUID FCEDIT FIGNORE FUNCNAME FUNCNAME FUNCNEST FUNCNEST GLOBIGNORE GROUPS histchars HISTCMD HISTCONTROL HISTFILE HISTFILESIZE HISTIGNORE HISTSIZE HISTTIMEFORMAT HISTTIMEFORMAT HOME HOSTFILE HOSTNAME HOSTTYPE IFS IGNOREEOF INPUTRC LANG LC_ALL LC_COLLATE LC_CTYPE LC_CTYPE LC_MESSAGES LC_NUMERIC LC_NUMERIC LINENO LINES LINES MACHTYPE MAIL MAILCHECK MAILPATH MAPFILE MAPFILE OLDPWD OPTARG OPTERR OPTIND OSTYPE PATH PIPESTATUS POSIXLY_CORRECT POSIXLY_CORRECT PPID PROMPT_COMMAND PS1 PS2 PS3 PS4 PWD RANDOM READLINE_LINE READLINE_LINE READLINE_POINT READLINE_POINT REPLY SECONDS SHELL SHELL SHELLOPTS SHLVL TIMEFORMAT TIMEOUT TMPDIR TMPDIR UID
Bram Moolenaar5ed11532022-07-06 13:18:11 +0100352 syn keyword bashStatement chmod clear complete du egrep expr fgrep find gnufind gnugrep grep head less ls mkdir mv rm rmdir rpm sed sleep sort strip tail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 syn keyword bashAdminStatement daemon killall killproc nice reload restart start status stop
Bram Moolenaar97d62492012-11-15 21:28:22 +0100354 syn keyword bashStatement command compgen
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355endif
356
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200357if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 syn cluster shCommandSubList add=kshSpecialVariables,kshStatement
359 syn cluster shCaseList add=kshStatement
360 syn keyword kshSpecialVariables contained CDPATH COLUMNS EDITOR ENV ERRNO FCEDIT FPATH HISTFILE HISTSIZE HOME IFS LINENO LINES MAIL MAILCHECK MAILPATH OLDPWD OPTARG OPTIND PATH PPID PS1 PS2 PS3 PS4 PWD RANDOM REPLY SECONDS SHELL TMOUT VISUAL
Bram Moolenaar5ed11532022-07-06 13:18:11 +0100361 syn keyword kshStatement cat chmod clear cp du egrep expr fgrep find grep head killall less ls mkdir mv nice printenv rm rmdir sed sort strip stty tail tput
Bram Moolenaar97d62492012-11-15 21:28:22 +0100362 syn keyword kshStatement command setgroups setsenv
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363endif
364
365syn match shSource "^\.\s"
366syn match shSource "\s\.\s"
Bram Moolenaar5c736222010-01-06 20:54:52 +0100367"syn region shColon start="^\s*:" end="$" end="\s#"me=e-2 contains=@shColonList
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100368"syn region shColon start="^\s*\zs:" end="$" end="\s#"me=e-2
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200369if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200370 syn match shColon '^\s*\zs:'
371endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000373" String And Character Constants: {{{1
374"================================
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200375syn match shNumber "\<\d\+\>#\="
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200376syn match shNumber "\<-\=\.\=\d\+\>#\="
Bram Moolenaar802a0d92016-06-26 16:17:58 +0200377syn match shCtrlSeq "\\\d\d\d\|\\[abcfnrtv0]" contained
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100378if exists("b:is_bash") || exists("b:is_kornshell")
Bram Moolenaar802a0d92016-06-26 16:17:58 +0200379 syn match shSpecial "[^\\]\(\\\\\)*\zs\\\o\o\o\|\\x\x\x\|\\c[^"]\|\\[abefnrtv]" contained
380 syn match shSpecial "^\(\\\\\)*\zs\\\o\o\o\|\\x\x\x\|\\c[^"]\|\\[abefnrtv]" contained
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200381 syn region shExSingleQuote matchgroup=shQuote start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial,shSpecial nextgroup=shSpecialNxt
382 syn region shExDoubleQuote matchgroup=shQuote start=+\$"+ skip=+\\\\\|\\.\|\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,shSpecial nextgroup=shSpecialNxt
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100383elseif !exists("g:sh_no_error")
Bram Moolenaar9964e462007-05-05 17:54:07 +0000384 syn region shExSingleQuote matchGroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial
Bram Moolenaare90ee312010-08-05 22:08:47 +0200385 syn region shExDoubleQuote matchGroup=Error start=+\$"+ skip=+\\\\\|\\.+ end=+"+ contains=shStringSpecial
Bram Moolenaardf177f62005-02-22 08:39:57 +0000386endif
Bram Moolenaard2855f52018-07-31 22:23:58 +0200387syn region shSingleQuote matchgroup=shQuote start=+'+ end=+'+ contains=@Spell nextgroup=shSpecialStart,shSpecialSQ
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +0200388syn region shDoubleQuote matchgroup=shQuote start=+\%(\%(\\\\\)*\\\)\@<!"+ skip=+\\.+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
Bram Moolenaar802a0d92016-06-26 16:17:58 +0200389syn match shStringSpecial "[^[:print:] \t]" contained
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +0200390syn match shStringSpecial "[^\\]\zs\%(\\\\\)*\(\\[\\"'`$()#]\)\+" nextgroup=shComment
391syn match shSpecialSQ "[^\\]\zs\%(\\\\\)*\(\\[\\"'`$()#]\)\+" contained nextgroup=shBkslshSnglQuote,@shNoZSList
392syn match shSpecialDQ "[^\\]\zs\%(\\\\\)*\(\\[\\"'`$()#]\)\+" contained nextgroup=shBkslshDblQuote,@shNoZSList
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200393syn match shSpecialStart "\%(\\\\\)*\\[\\"'`$()#]" contained nextgroup=shBkslshSnglQuote,shBkslshDblQuote,@shNoZSList
Bram Moolenaar60cce2f2015-10-13 23:21:27 +0200394syn match shSpecial "^\%(\\\\\)*\\[\\"'`$()#]"
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100395syn match shSpecialNoZS contained "\%(\\\\\)*\\[\\"'`$()#]"
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200396syn match shSpecialNxt contained "\\[\\"'`$()#]"
Bram Moolenaar47e13952020-05-12 22:49:12 +0200397"syn region shBkslshSnglQuote contained matchgroup=shQuote start=+'+ end=+'+ contains=@Spell nextgroup=shSpecialStart
398"syn region shBkslshDblQuote contained matchgroup=shQuote start=+"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000400" Comments: {{{1
401"==========
Bram Moolenaar5c736222010-01-06 20:54:52 +0100402syn cluster shCommentGroup contains=shTodo,@Spell
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200403if exists("b:is_bash")
404 syn match shTodo contained "\<\%(COMBAK\|FIXME\|TODO\|XXX\)\ze:\=\>"
405else
406 syn keyword shTodo contained COMBAK FIXME TODO XXX
407endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100408syn match shComment "^\s*\zs#.*$" contains=@shCommentGroup
409syn match shComment "\s\zs#.*$" contains=@shCommentGroup
Bram Moolenaar97d62492012-11-15 21:28:22 +0100410syn match shComment contained "#.*$" contains=@shCommentGroup
Bram Moolenaar113cb512021-11-07 20:27:04 +0000411syn match shQuickComment contained "#.*$" contains=@shCommentGroup
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200412syn match shBQComment contained "#.\{-}\ze`" contains=@shCommentGroup
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000414" Here Documents: {{{1
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +0200415" (modified by Felipe Contreras)
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000416" =========================================
Bram Moolenaar86b48162022-12-06 18:20:10 +0000417ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc01 start="<<\s*\z([^ \t|>]\+\)" matchgroup=shHereDoc01 end="^\z1$" contains=@shDblQuoteList
Bram Moolenaar71badf92023-04-22 22:40:14 +0100418ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc02 start="<<-\s*\z([^ \t|>]\+\)" matchgroup=shHereDoc02 end="^\t*\z1$" contains=@shDblQuoteList
Bram Moolenaar86b48162022-12-06 18:20:10 +0000419ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc03 start="<<\s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc03 end="^\z1$"
Bram Moolenaar71badf92023-04-22 22:40:14 +0100420ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc04 start="<<-\s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc04 end="^\t*\z1$"
Bram Moolenaar86b48162022-12-06 18:20:10 +0000421ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc05 start="<<\s*'\z([^']\+\)'" matchgroup=shHereDoc05 end="^\z1$"
Bram Moolenaar71badf92023-04-22 22:40:14 +0100422ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc06 start="<<-\s*'\z([^']\+\)'" matchgroup=shHereDoc06 end="^\t*\z1$"
Bram Moolenaar86b48162022-12-06 18:20:10 +0000423ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc07 start="<<\s*\"\z([^"]\+\)\"" matchgroup=shHereDoc07 end="^\z1$"
Bram Moolenaar71badf92023-04-22 22:40:14 +0100424ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc08 start="<<-\s*\"\z([^"]\+\)\"" matchgroup=shHereDoc08 end="^\t*\z1$"
Bram Moolenaar86b48162022-12-06 18:20:10 +0000425ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc09 start="<<\s*\\\_$\_s*\z([^ \t|>]\+\)" matchgroup=shHereDoc09 end="^\z1$" contains=@shDblQuoteList
Bram Moolenaar71badf92023-04-22 22:40:14 +0100426ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc10 start="<<-\s*\\\_$\_s*\z([^ \t|>]\+\)" matchgroup=shHereDoc10 end="^\t*\z1$" contains=@shDblQuoteList
Bram Moolenaar86b48162022-12-06 18:20:10 +0000427ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc11 start="<<\s*\\\_$\_s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc11 end="^\z1$"
Bram Moolenaar71badf92023-04-22 22:40:14 +0100428ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc12 start="<<-\s*\\\_$\_s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc12 end="^\t*\z1$"
Bram Moolenaar86b48162022-12-06 18:20:10 +0000429ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc13 start="<<\s*\\\_$\_s*'\z([^']\+\)'" matchgroup=shHereDoc13 end="^\z1$"
Bram Moolenaar71badf92023-04-22 22:40:14 +0100430ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc14 start="<<-\s*\\\_$\_s*'\z([^']\+\)'" matchgroup=shHereDoc14 end="^\t*\z1$"
Bram Moolenaar86b48162022-12-06 18:20:10 +0000431ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc15 start="<<\s*\\\_$\_s*\"\z([^"]\+\)\"" matchgroup=shHereDoc15 end="^\z1$"
Bram Moolenaar71badf92023-04-22 22:40:14 +0100432ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc16 start="<<-\s*\\\_$\_s*\"\z([^"]\+\)\"" matchgroup=shHereDoc16 end="^\t*\z1$"
Bram Moolenaar23515b42020-11-29 14:36:24 +0100433
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000435" Here Strings: {{{1
436" =============
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200437" available for: bash; ksh (really should be ksh93 only) but not if its a posix
Bram Moolenaar690afe12017-01-28 18:34:47 +0100438if exists("b:is_bash") || (exists("b:is_kornshell") && !exists("b:is_posix"))
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200439 syn match shHereString "<<<" skipwhite nextgroup=shCmdParenRegion
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000440endif
441
442" Identifiers: {{{1
443"=============
Bram Moolenaarc236c162008-07-13 17:41:49 +0000444syn match shSetOption "\s\zs[-+][a-zA-Z0-9]\+\>" contained
Bram Moolenaar23515b42020-11-29 14:36:24 +0100445syn match shVariable "\<\h\w*\ze=" nextgroup=shVarAssign
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100446syn match shVarAssign "=" contained nextgroup=shCmdParenRegion,shPattern,shDeref,shDerefSimple,shDoubleQuote,shExDoubleQuote,shSingleQuote,shExSingleQuote,shVar
447syn match shVar contained "\h\w*"
Bram Moolenaarbc488a72013-07-05 21:01:22 +0200448syn region shAtExpr contained start="@(" end=")" contains=@shIdList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449if exists("b:is_bash")
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100450 syn match shSet "^\s*set\ze\s\+$"
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100451 syn region shSetList oneline matchgroup=shSet start="\<\%(declare\|local\|export\)\>\ze[/a-zA-Z_]\@!" end="$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+#\|=" contains=@shIdList
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100452 syn region shSetList oneline matchgroup=shSet start="\<\%(set\|unset\)\>[/a-zA-Z_]\@!" end="\ze[;|#)]\|$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+=" contains=@shIdList nextgroup=shComment
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200453elseif exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100454 syn match shSet "^\s*set\ze\s\+$"
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200455 if exists("b:is_dash")
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100456 syn region shSetList oneline matchgroup=shSet start="\<\%(local\)\>\ze[/]\@!" end="$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]" contains=@shIdList
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200457 endif
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100458 syn region shSetList oneline matchgroup=shSet start="\<\(export\)\>\ze[/]\@!" end="$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]" contains=@shIdList
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100459 syn region shSetList oneline matchgroup=shSet start="\<\%(set\|unset\>\)\ze[/a-zA-Z_]\@!" end="\ze[;|#)]\|$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]" contains=@shIdList nextgroup=shComment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460else
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100461 syn region shSetList oneline matchgroup=shSet start="\<\(set\|export\|unset\)\>\ze[/a-zA-Z_]\@!" end="\ze[;|#)]\|$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]" contains=@shIdList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462endif
463
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100464" KornShell namespace: {{{1
465if exists("b:is_kornshell")
466 syn keyword shFunctionKey namespace skipwhite skipnl nextgroup=shFunctionTwo
467endif
468
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000469" Functions: {{{1
Bram Moolenaar690afe12017-01-28 18:34:47 +0100470if !exists("b:is_posix")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000471 syn keyword shFunctionKey function skipwhite skipnl nextgroup=shFunctionTwo
472endif
473
474if exists("b:is_bash")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200475 ShFoldFunctions syn region shFunctionOne matchgroup=shFunction start="^\s*[A-Za-z_0-9:][-a-zA-Z_0-9:]*\s*()\_s*{" end="}" contains=@shFunctionList skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
476 ShFoldFunctions syn region shFunctionTwo matchgroup=shFunction start="\%(do\)\@!\&\<[A-Za-z_0-9:][-a-zA-Z_0-9:]*\>\s*\%(()\)\=\_s*{" end="}" contains=shFunctionKey,@shFunctionList contained skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
477 ShFoldFunctions syn region shFunctionThree matchgroup=shFunction start="^\s*[A-Za-z_0-9:][-a-zA-Z_0-9:]*\s*()\_s*(" end=")" contains=@shFunctionList skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
478 ShFoldFunctions syn region shFunctionFour matchgroup=shFunction start="\%(do\)\@!\&\<[A-Za-z_0-9:][-a-zA-Z_0-9:]*\>\s*\%(()\)\=\_s*)" end=")" contains=shFunctionKey,@shFunctionList contained skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479else
Bram Moolenaar91c49372016-05-08 09:50:29 +0200480 ShFoldFunctions syn region shFunctionOne matchgroup=shFunction start="^\s*\h\w*\s*()\_s*{" end="}" contains=@shFunctionList skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
481 ShFoldFunctions syn region shFunctionTwo matchgroup=shFunction start="\%(do\)\@!\&\<\h\w*\>\s*\%(()\)\=\_s*{" end="}" contains=shFunctionKey,@shFunctionList contained skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
482 ShFoldFunctions syn region shFunctionThree matchgroup=shFunction start="^\s*\h\w*\s*()\_s*(" end=")" contains=@shFunctionList skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
483 ShFoldFunctions syn region shFunctionFour matchgroup=shFunction start="\%(do\)\@!\&\<\h\w*\>\s*\%(()\)\=\_s*(" end=")" contains=shFunctionKey,@shFunctionList contained skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000486" Parameter Dereferencing: {{{1
487" ========================
Bram Moolenaarbe4e0162023-02-02 13:59:48 +0000488" Note: sh04 failure with following line
489"if !exists("g:sh_no_error") && !(exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix"))
490if !exists("g:sh_no_error")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200491 syn match shDerefWordError "[^}$[~]" contained
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100492endif
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100493syn match shDerefSimple "\$\%(\h\w*\|\d\)" nextgroup=@shNoZSList
Bram Moolenaar47e13952020-05-12 22:49:12 +0200494syn region shDeref matchgroup=PreProc start="\${" end="}" contains=@shDerefList,shDerefVarArray nextgroup=shSpecialStart
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100495syn match shDerefSimple "\$[-#*@!?]" nextgroup=@shNoZSList
496syn match shDerefSimple "\$\$" nextgroup=@shNoZSList
Bram Moolenaar47e13952020-05-12 22:49:12 +0200497syn match shDerefSimple "\${\d}" nextgroup=@shNoZSList nextgroup=shSpecialStart
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200498if exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaar47e13952020-05-12 22:49:12 +0200499 syn region shDeref matchgroup=PreProc start="\${##\=" end="}" contains=@shDerefList nextgroup=@shSpecialNoZS,shSpecialStart
500 syn region shDeref matchgroup=PreProc start="\${\$\$" end="}" contains=@shDerefList nextgroup=@shSpecialNoZS,shSpecialStart
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501endif
502
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100503" ksh: ${.sh.*} variables: {{{1
504" ========================================
505if exists("b:is_kornshell")
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100506 syn match shDerefVar contained "\.\+" nextgroup=@shDerefVarList
507endif
508
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100509" ksh: ${!var[*]} array index list syntax: {{{1
510" ========================================
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200511if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100512 syn region shDeref matchgroup=PreProc start="\${!" end="}" contains=@shDerefVarArray
513endif
514
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000515" bash: ${!prefix*} and ${#parameter}: {{{1
516" ====================================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517if exists("b:is_bash")
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200518 syn region shDeref matchgroup=PreProc start="\${!" end="\*\=}" contains=@shDerefList,shDerefOffset
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200519 syn match shDerefVar contained "{\@<=!\h\w*" nextgroup=@shDerefVarList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520endif
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100521if exists("b:is_kornshell")
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200522 syn match shDerefVar contained "{\@<=!\h\w*[[:alnum:]_.]*" nextgroup=@shDerefVarList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100523endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200525syn match shDerefSpecial contained "{\@<=[-*@?0]" nextgroup=shDerefOp,shDerefOffset,shDerefOpError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526syn match shDerefSpecial contained "\({[#!]\)\@<=[[:alnum:]*@_]\+" nextgroup=@shDerefVarList,shDerefOp
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200527syn match shDerefVar contained "{\@<=\h\w*" nextgroup=@shDerefVarList
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200528syn match shDerefVar contained '\d' nextgroup=@shDerefVarList
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200529if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200530 syn match shDerefVar contained "{\@<=\h\w*[[:alnum:]_.]*" nextgroup=@shDerefVarList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100531endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000533" sh ksh bash : ${var[... ]...} array reference: {{{1
Lucien Grondince3b0132023-11-04 09:41:37 +0100534syn region shDerefVarArray contained matchgroup=shDeref start="\[" end="]" contains=@shCommandSubList nextgroup=shDerefOp,shDerefOpError,shDerefOffset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000536" Special ${parameter OPERATOR word} handling: {{{1
Bram Moolenaare2719092015-01-10 15:09:25 +0100537" sh ksh bash : ${parameter:-word} word is default value
538" sh ksh bash : ${parameter:=word} assign word as default value
539" sh ksh bash : ${parameter:?word} display word if parameter is null
540" sh ksh bash : ${parameter:+word} use word if parameter is not null, otherwise nothing
541" ksh bash : ${parameter#pattern} remove small left pattern
542" ksh bash : ${parameter##pattern} remove large left pattern
543" ksh bash : ${parameter%pattern} remove small right pattern
544" ksh bash : ${parameter%%pattern} remove large right pattern
545" bash : ${parameter^pattern} Case modification
546" bash : ${parameter^^pattern} Case modification
547" bash : ${parameter,pattern} Case modification
548" bash : ${parameter,,pattern} Case modification
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200549" bash : ${@:start:qty} display command line arguments from start to start+qty-1 (inferred)
Bram Moolenaardd60c362023-02-27 15:49:53 +0000550" bash : ${parameter@operator} transforms parameter (operator∈[uULqEPARa])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551syn cluster shDerefPatternList contains=shDerefPattern,shDerefString
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100552if !exists("g:sh_no_error")
553 syn match shDerefOpError contained ":[[:punct:]]"
554endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555syn match shDerefOp contained ":\=[-=?]" nextgroup=@shDerefPatternList
556syn match shDerefOp contained ":\=+" nextgroup=@shDerefPatternList
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200557if exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200558 syn match shDerefOp contained "#\{1,2}" nextgroup=@shDerefPatternList
559 syn match shDerefOp contained "%\{1,2}" nextgroup=@shDerefPatternList
560 syn match shDerefPattern contained "[^{}]\+" contains=shDeref,shDerefSimple,shDerefPattern,shDerefString,shCommandSub,shDerefEscape nextgroup=shDerefPattern
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 syn region shDerefPattern contained start="{" end="}" contains=shDeref,shDerefSimple,shDerefString,shCommandSub nextgroup=shDerefPattern
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000562 syn match shDerefEscape contained '\%(\\\\\)*\\.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563endif
Bram Moolenaard960d762011-09-21 19:22:10 +0200564if exists("b:is_bash")
565 syn match shDerefOp contained "[,^]\{1,2}" nextgroup=@shDerefPatternList
Bram Moolenaardd60c362023-02-27 15:49:53 +0000566 syn match shDerefOp contained "@[uULQEPAKa]"
Bram Moolenaard960d762011-09-21 19:22:10 +0200567endif
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200568syn region shDerefString contained matchgroup=shDerefDelim start=+\%(\\\)\@<!'+ end=+'+ contains=shStringSpecial
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200569syn region shDerefString contained matchgroup=shDerefDelim start=+\%(\\\)\@<!"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial
Bram Moolenaarc236c162008-07-13 17:41:49 +0000570syn match shDerefString contained "\\["']" nextgroup=shDerefPattern
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200572if exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix")
573 " bash ksh posix : ${parameter:offset}
574 " bash ksh posix : ${parameter:offset:length}
575 syn region shDerefOffset contained start=':[^-=?+]' end='\ze:' end='\ze}' contains=shDeref,shDerefSimple,shDerefEscape nextgroup=shDerefLen,shDeref,shDerefSimple
576 syn region shDerefOffset contained start=':\s-' end='\ze:' end='\ze}' contains=shDeref,shDerefSimple,shDerefEscape nextgroup=shDerefLen,shDeref,shDerefSimple
Bram Moolenaard2855f52018-07-31 22:23:58 +0200577 syn match shDerefLen contained ":[^}]\+" contains=shDeref,shDerefSimple,shArithmetic
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200578endif
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000579
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200580if exists("b:is_bash")
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000581 " bash : ${parameter//pattern/string}
582 " bash : ${parameter//pattern}
583 syn match shDerefPPS contained '/\{1,2}' nextgroup=shDerefPPSleft
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200584 syn region shDerefPPSleft contained start='.' skip=@\%(\\\\\)*\\/@ matchgroup=shDerefOp end='/' end='\ze}' end='"' nextgroup=shDerefPPSright contains=@shPPSLeftList
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100585 syn region shDerefPPSright contained start='.' skip=@\%(\\\\\)\+@ end='\ze}' contains=@shPPSRightList
Bram Moolenaaracb4f222016-01-10 15:59:26 +0100586
587 " bash : ${parameter/#substring/replacement}
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200588 syn match shDerefPSR contained '/#' nextgroup=shDerefPSRleft,shDoubleQuote,shSingleQuote
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100589 syn region shDerefPSRleft contained start='[^"']' skip=@\%(\\\\\)*\\/@ matchgroup=shDerefOp end='/' end='\ze}' nextgroup=shDerefPSRright
Bram Moolenaaracb4f222016-01-10 15:59:26 +0100590 syn region shDerefPSRright contained start='.' skip=@\%(\\\\\)\+@ end='\ze}'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591endif
592
Bram Moolenaarc236c162008-07-13 17:41:49 +0000593" Arithmetic Parenthesized Expressions: {{{1
Bram Moolenaarbc488a72013-07-05 21:01:22 +0200594"syn region shParen matchgroup=shArithRegion start='[^$]\zs(\%(\ze[^(]\|$\)' end=')' contains=@shArithParenList
595syn region shParen matchgroup=shArithRegion start='\$\@!(\%(\ze[^(]\|$\)' end=')' contains=@shArithParenList
Bram Moolenaarc236c162008-07-13 17:41:49 +0000596
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200597" Additional sh Keywords: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000598" ===================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599syn keyword shStatement break cd chdir continue eval exec exit kill newgrp pwd read readonly return shift test trap ulimit umask wait
600syn keyword shConditional contained elif else then
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100601if !exists("g:sh_no_error")
602 syn keyword shCondError elif else then
603endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200605" Additional ksh Keywords and Aliases: {{{1
606" ===================================
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100607if exists("b:is_kornshell") || exists("b:is_posix")
608 syn keyword shStatement bg builtin disown enum export false fg getconf getopts hist jobs let printf sleep true unalias whence
609 syn keyword shStatement typeset skipwhite nextgroup=shSetOption
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200610 syn keyword shStatement autoload compound fc float functions hash history integer nameref nohup r redirect source stop suspend times type
Bram Moolenaar690afe12017-01-28 18:34:47 +0100611 if exists("b:is_posix")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000612 syn keyword shStatement command
613 else
614 syn keyword shStatement time
615 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200617" Additional bash Keywords: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000618" =====================
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100619elseif exists("b:is_bash")
620 syn keyword shStatement bg builtin disown export false fg getopts jobs let printf sleep true unalias
621 syn keyword shStatement typeset nextgroup=shSetOption
622 syn keyword shStatement fc hash history source suspend times type
Lucien Grondinb16fc982024-01-01 19:00:41 +0100623 syn keyword shStatement bind builtin caller compopt declare dirs disown enable export help logout local mapfile popd pushd readarray shopt source typeset
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100624else
625 syn keyword shStatement login newgrp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626endif
627
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000628" Synchronization: {{{1
629" ================
Bram Moolenaar03413f42016-04-12 21:07:15 +0200630if !exists("g:sh_minlines")
631 let s:sh_minlines = 200
632else
633 let s:sh_minlines= g:sh_minlines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634endif
Bram Moolenaar03413f42016-04-12 21:07:15 +0200635if !exists("g:sh_maxlines")
636 let s:sh_maxlines = 2*s:sh_minlines
637 if s:sh_maxlines < 25
638 let s:sh_maxlines= 25
639 endif
640else
641 let s:sh_maxlines= g:sh_maxlines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642endif
Bram Moolenaar03413f42016-04-12 21:07:15 +0200643exec "syn sync minlines=" . s:sh_minlines . " maxlines=" . s:sh_maxlines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644syn sync match shCaseEsacSync grouphere shCaseEsac "\<case\>"
645syn sync match shCaseEsacSync groupthere shCaseEsac "\<esac\>"
646syn sync match shDoSync grouphere shDo "\<do\>"
647syn sync match shDoSync groupthere shDo "\<done\>"
648syn sync match shForSync grouphere shFor "\<for\>"
649syn sync match shForSync groupthere shFor "\<in\>"
650syn sync match shIfSync grouphere shIf "\<if\>"
651syn sync match shIfSync groupthere shIf "\<fi\>"
652syn sync match shUntilSync grouphere shRepeat "\<until\>"
653syn sync match shWhileSync grouphere shRepeat "\<while\>"
654
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000655" Default Highlighting: {{{1
656" =====================
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200657if !exists("skip_sh_syntax_inits")
658 hi def link shArithRegion shShellVariables
659 hi def link shAstQuote shDoubleQuote
660 hi def link shAtExpr shSetList
Bram Moolenaard2855f52018-07-31 22:23:58 +0200661 hi def link shBkslshSnglQuote shSingleQuote
662 hi def link shBkslshDblQuote shDOubleQuote
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200663 hi def link shBeginHere shRedir
664 hi def link shCaseBar shConditional
665 hi def link shCaseCommandSub shCommandSub
666 hi def link shCaseDoubleQuote shDoubleQuote
667 hi def link shCaseIn shConditional
668 hi def link shQuote shOperator
669 hi def link shCaseSingleQuote shSingleQuote
670 hi def link shCaseStart shConditional
671 hi def link shCmdSubRegion shShellVariables
672 hi def link shColon shComment
673 hi def link shDerefOp shOperator
674 hi def link shDerefPOL shDerefOp
675 hi def link shDerefPPS shDerefOp
676 hi def link shDerefPSR shDerefOp
677 hi def link shDeref shShellVariables
678 hi def link shDerefDelim shOperator
679 hi def link shDerefSimple shDeref
680 hi def link shDerefSpecial shDeref
681 hi def link shDerefString shDoubleQuote
682 hi def link shDerefVar shDeref
683 hi def link shDoubleQuote shString
684 hi def link shEcho shString
685 hi def link shEchoDelim shOperator
686 hi def link shEchoQuote shString
687 hi def link shForPP shLoop
688 hi def link shFunction Function
689 hi def link shEmbeddedEcho shString
690 hi def link shEscape shCommandSub
691 hi def link shExDoubleQuote shDoubleQuote
692 hi def link shExSingleQuote shSingleQuote
693 hi def link shHereDoc shString
694 hi def link shHereString shRedir
695 hi def link shHerePayload shHereDoc
696 hi def link shLoop shStatement
697 hi def link shSpecialNxt shSpecial
698 hi def link shNoQuote shDoubleQuote
699 hi def link shOption shCommandSub
700 hi def link shPattern shString
701 hi def link shParen shArithmetic
702 hi def link shPosnParm shShellVariables
703 hi def link shQuickComment shComment
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200704 hi def link shBQComment shComment
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200705 hi def link shRange shOperator
706 hi def link shRedir shOperator
707 hi def link shSetListDelim shOperator
708 hi def link shSetOption shOption
709 hi def link shSingleQuote shString
710 hi def link shSource shOperator
711 hi def link shStringSpecial shSpecial
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200712 hi def link shSpecialStart shSpecial
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200713 hi def link shSubShRegion shOperator
714 hi def link shTestOpr shConditional
715 hi def link shTestPattern shString
716 hi def link shTestDoubleQuote shString
717 hi def link shTestSingleQuote shString
718 hi def link shTouchCmd shStatement
719 hi def link shVariable shSetList
720 hi def link shWrapLineOperator shOperator
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200722 if exists("b:is_bash")
723 hi def link bashAdminStatement shStatement
724 hi def link bashSpecialVariables shShellVariables
725 hi def link bashStatement shStatement
726 hi def link shCharClass shSpecial
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200727 hi def link shDerefOffset shDerefOp
728 hi def link shDerefLen shDerefOffset
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100729 endif
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200730 if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200731 hi def link kshSpecialVariables shShellVariables
732 hi def link kshStatement shStatement
733 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200735 if !exists("g:sh_no_error")
736 hi def link shCaseError Error
737 hi def link shCondError Error
738 hi def link shCurlyError Error
739 hi def link shDerefOpError Error
740 hi def link shDerefWordError Error
741 hi def link shDoError Error
742 hi def link shEsacError Error
743 hi def link shIfError Error
744 hi def link shInError Error
745 hi def link shParenError Error
746 hi def link shTestError Error
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200747 if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200748 hi def link shDTestError Error
749 endif
750 endif
751
752 hi def link shArithmetic Special
753 hi def link shCharClass Identifier
754 hi def link shSnglCase Statement
755 hi def link shCommandSub Special
Bram Moolenaard2855f52018-07-31 22:23:58 +0200756 hi def link shCommandSubBQ shCommandSub
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200757 hi def link shComment Comment
758 hi def link shConditional Conditional
759 hi def link shCtrlSeq Special
760 hi def link shExprRegion Delimiter
761 hi def link shFunctionKey Function
762 hi def link shFunctionName Function
763 hi def link shNumber Number
764 hi def link shOperator Operator
765 hi def link shRepeat Repeat
766 hi def link shSet Statement
767 hi def link shSetList Identifier
768 hi def link shShellVariables PreProc
769 hi def link shSpecial Special
Bram Moolenaard2855f52018-07-31 22:23:58 +0200770 hi def link shSpecialDQ Special
771 hi def link shSpecialSQ Special
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100772 hi def link shSpecialNoZS shSpecial
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200773 hi def link shStatement Statement
774 hi def link shString String
775 hi def link shTodo Todo
776 hi def link shAlias Identifier
777 hi def link shHereDoc01 shRedir
778 hi def link shHereDoc02 shRedir
779 hi def link shHereDoc03 shRedir
780 hi def link shHereDoc04 shRedir
781 hi def link shHereDoc05 shRedir
782 hi def link shHereDoc06 shRedir
783 hi def link shHereDoc07 shRedir
784 hi def link shHereDoc08 shRedir
785 hi def link shHereDoc09 shRedir
786 hi def link shHereDoc10 shRedir
787 hi def link shHereDoc11 shRedir
788 hi def link shHereDoc12 shRedir
789 hi def link shHereDoc13 shRedir
790 hi def link shHereDoc14 shRedir
791 hi def link shHereDoc15 shRedir
Bram Moolenaar23515b42020-11-29 14:36:24 +0100792 hi def link shHereDoc16 shRedir
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200793endif
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100794
795" Delete shell folding commands {{{1
796" =============================
797delc ShFoldFunctions
798delc ShFoldHereDoc
799delc ShFoldIfDoFor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000801" Set Current Syntax: {{{1
802" ===================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803if exists("b:is_bash")
804 let b:current_syntax = "bash"
805elseif exists("b:is_kornshell")
806 let b:current_syntax = "ksh"
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200807elseif exists("b:is_posix")
808 let b:current_syntax = "posix"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809else
810 let b:current_syntax = "sh"
811endif
812
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000813" vim: ts=16 fdm=marker