blob: 290d4b68c7f07939a6040cabba3b4ff911142958 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim syntax file
2" Language: shell (sh) Korn shell (ksh) bash (sh)
Christian Brabandtf9ca1392024-02-19 20:37:11 +01003" Maintainer: This runtime file is looking for a new maintainer.
4" Previous Maintainers: Charles E. Campbell
5" Lennart Schultz <Lennart.Schultz@ecmwf.int>
dkearns1bdc9432024-03-05 05:14:08 +11006" Last Change: 2024 Mar 04 by Vim Project
Aliaksei Budavei48fa3192024-12-30 10:23:50 +01007" 2024 Nov 03 by Aliaksei Budavei <0x000c70 AT gmail DOT com> (improved bracket expressions, #15941)
Jon Parisecf1f5552025-01-06 18:27:38 +01008" 2025 Jan 06 add $0 to bashSpecialVariables (#16394)
Bram Moolenaar71badf92023-04-22 22:40:14 +01009" Version: 208
Christian Brabandtf9ca1392024-02-19 20:37:11 +010010" Former URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_SH
Bram Moolenaare2719092015-01-10 15:09:25 +010011" For options and settings, please use: :help ft-sh-syntax
Bram Moolenaar23515b42020-11-29 14:36:24 +010012" 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 +000013
Bram Moolenaarf37506f2016-08-31 22:22:10 +020014" quit when a syntax file was already loaded {{{1
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020015if exists("b:current_syntax")
Bram Moolenaar071d4272004-06-13 20:20:40 +000016 finish
17endif
18
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020019" If the shell script itself specifies which shell to use, use it
20if getline(1) =~ '\<ksh\>'
Bram Moolenaar91c49372016-05-08 09:50:29 +020021 let b:is_kornshell = 1
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020022elseif getline(1) =~ '\<bash\>'
Bram Moolenaar91c49372016-05-08 09:50:29 +020023 let b:is_bash = 1
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020024elseif getline(1) =~ '\<dash\>'
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020025 let b:is_dash = 1
26elseif !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 +020027 " user did not specify which shell to use, and
28 " the script itself does not specify which shell to use. FYI: /bin/sh is ambiguous.
29 " Assuming /bin/sh is executable, and if its a link, find out what it links to.
Bram Moolenaarbc488a72013-07-05 21:01:22 +020030 let s:shell = ""
Bram Moolenaard960d762011-09-21 19:22:10 +020031 if executable("/bin/sh")
Bram Moolenaarbc488a72013-07-05 21:01:22 +020032 let s:shell = resolve("/bin/sh")
Bram Moolenaard960d762011-09-21 19:22:10 +020033 elseif executable("/usr/bin/sh")
Bram Moolenaarbc488a72013-07-05 21:01:22 +020034 let s:shell = resolve("/usr/bin/sh")
Bram Moolenaard960d762011-09-21 19:22:10 +020035 endif
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020036 if s:shell =~ '\<ksh\>'
Bram Moolenaar91c49372016-05-08 09:50:29 +020037 let b:is_kornshell= 1
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020038 elseif s:shell =~ '\<bash\>'
Bram Moolenaar91c49372016-05-08 09:50:29 +020039 let b:is_bash = 1
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020040 elseif s:shell =~ '\<dash\>'
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020041 let b:is_dash = 1
Bram Moolenaarbc488a72013-07-05 21:01:22 +020042 endif
43 unlet s:shell
Bram Moolenaard960d762011-09-21 19:22:10 +020044endif
45
Bram Moolenaard4755bb2004-09-02 19:12:26 +000046" handling /bin/sh with is_kornshell/is_sh {{{1
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +020047" b:is_sh will be set when "#! /bin/sh" is found;
Bram Moolenaar071d4272004-06-13 20:20:40 +000048" However, it often is just a masquerade by bash (typically Linux)
49" or kornshell (typically workstations with Posix "sh").
Bram Moolenaard960d762011-09-21 19:22:10 +020050" So, when the user sets "g:is_bash", "g:is_kornshell",
51" or "g:is_posix", a b:is_sh is converted into b:is_bash/b:is_kornshell,
Bram Moolenaar071d4272004-06-13 20:20:40 +000052" respectively.
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020053if !exists("b:is_kornshell") && !exists("b:is_bash") && !exists("b:is_dash")
Bram Moolenaar7fc904b2006-04-13 20:37:35 +000054 if exists("g:is_posix") && !exists("g:is_kornshell")
55 let g:is_kornshell= g:is_posix
56 endif
57 if exists("g:is_kornshell")
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 let b:is_kornshell= 1
59 if exists("b:is_sh")
60 unlet b:is_sh
61 endif
Bram Moolenaar7fc904b2006-04-13 20:37:35 +000062 elseif exists("g:is_bash")
Bram Moolenaar071d4272004-06-13 20:20:40 +000063 let b:is_bash= 1
64 if exists("b:is_sh")
65 unlet b:is_sh
66 endif
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020067 elseif exists("g:is_dash")
68 let b:is_dash= 1
69 if exists("b:is_sh")
70 unlet b:is_sh
71 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000072 else
73 let b:is_sh= 1
74 endif
75endif
76
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020077" if b:is_dash, set b:is_posix too
78if exists("b:is_dash")
79 let b:is_posix= 1
80endif
81
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000082" set up default g:sh_fold_enabled {{{1
Bram Moolenaarb4ff5182015-11-10 21:15:48 +010083" ================================
Bram Moolenaar071d4272004-06-13 20:20:40 +000084if !exists("g:sh_fold_enabled")
85 let g:sh_fold_enabled= 0
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000086elseif g:sh_fold_enabled != 0 && !has("folding")
87 let g:sh_fold_enabled= 0
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000088 echomsg "Ignoring g:sh_fold_enabled=".g:sh_fold_enabled."; need to re-compile vim for +fold support"
89endif
Bram Moolenaar86b48162022-12-06 18:20:10 +000090let s:sh_fold_functions= and(g:sh_fold_enabled,1)
91let s:sh_fold_heredoc = and(g:sh_fold_enabled,2)
92let s:sh_fold_ifdofor = and(g:sh_fold_enabled,4)
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000093if g:sh_fold_enabled && &fdm == "manual"
Bram Moolenaar97d62492012-11-15 21:28:22 +010094 " Given that the user provided g:sh_fold_enabled
95 " AND g:sh_fold_enabled is manual (usual default)
96 " implies a desire for syntax-based folding
97 setl fdm=syntax
Bram Moolenaar071d4272004-06-13 20:20:40 +000098endif
99
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +0200100" set up the syntax-highlighting for iskeyword
Bram Moolenaar723dd942019-04-04 13:11:03 +0200101if (v:version == 704 && has("patch-7.4.1142")) || v:version > 704
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +0200102 if !exists("g:sh_syntax_isk") || (exists("g:sh_syntax_isk") && g:sh_syntax_isk)
103 if exists("b:is_bash")
104 exe "syn iskeyword ".&iskeyword.",-,:"
105 else
106 exe "syn iskeyword ".&iskeyword.",-"
107 endif
Bram Moolenaar91c49372016-05-08 09:50:29 +0200108 endif
Bram Moolenaare0fa3742016-02-20 15:47:01 +0100109endif
110
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100111" Set up folding commands for shell {{{1
112" =================================
Bram Moolenaar86b48162022-12-06 18:20:10 +0000113sil! delc ShFoldFunctions
114sil! delc ShFoldHereDoc
115sil! delc ShFoldIfDoFor
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100116if s:sh_fold_functions
117 com! -nargs=* ShFoldFunctions <args> fold
118else
119 com! -nargs=* ShFoldFunctions <args>
120endif
121if s:sh_fold_heredoc
122 com! -nargs=* ShFoldHereDoc <args> fold
123else
124 com! -nargs=* ShFoldHereDoc <args>
125endif
126if s:sh_fold_ifdofor
127 com! -nargs=* ShFoldIfDoFor <args> fold
128else
129 com! -nargs=* ShFoldIfDoFor <args>
130endif
131
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100132" Generate bracket expression items {{{1
133" =================================
134" Note that the following function can be invoked as many times as necessary
135" provided that these constraints hold for the passed dictionary argument:
136" - every time a unique group-name value is assigned to the "itemGroup" key;
137" - only ONCE either the "extraArgs" key is not entered or it is entered and
138" its value does not have "contained" among other optional arguments (":help
139" :syn-arguments").
140fun! s:GenerateBracketExpressionItems(dict) abort
141 let itemGroup = a:dict.itemGroup
142 let bracketGroup = a:dict.bracketGroup
143 let invGroup = itemGroup . 'Inv'
144 let skipLeftBracketGroup = itemGroup . 'SkipLeftBracket'
145 let skipRightBracketGroup = itemGroup . 'SkipRightBracket'
146 let extraArgs = has_key(a:dict, 'extraArgs') ? a:dict.extraArgs : ''
147
148 " Make the leading "[!^]" stand out in a NON-matching expression.
149 exec 'syn match ' . invGroup . ' contained "\[\@<=[!^]"'
150
151 " Set up indirections for unbalanced-bracket highlighting.
152 exec 'syn region ' . skipRightBracketGroup . ' contained matchgroup=' . bracketGroup . ' start="\[\%([!^]\=\\\=\]\)\@=" matchgroup=shCollSymb end="\[\.[^]]\{-}\][^]]\{-}\.\]" matchgroup=' . itemGroup . ' end="\]" contains=@shBracketExprList,shDoubleQuote,' . invGroup
153 exec 'syn region ' . skipLeftBracketGroup . ' contained matchgroup=' . bracketGroup . ' start="\[\%([!^]\=\\\=\]\)\@=" skip="[!^]\=\\\=\]\%(\[[^]]\+\]\|[^]]\)\{-}\%(\[[:.=]\@!\)\@=" matchgroup=' . itemGroup . ' end="\[[:.=]\@!" contains=@shBracketExprList,shDoubleQuote,' . invGroup
154
155 " Look for a general matching expression.
156 exec 'syn region ' . itemGroup . ' matchgroup=' . bracketGroup . ' start="\[\S\@=" end="\]" contains=@shBracketExprList,shDoubleQuote ' . extraArgs
157 " Look for a general NON-matching expression.
158 exec 'syn region ' . itemGroup . ' matchgroup=' . bracketGroup . ' start="\[[!^]\@=" end="\]" contains=@shBracketExprList,shDoubleQuote,' . invGroup . ' ' . extraArgs
159
160 " Accommodate unbalanced brackets in bracket expressions. The supported
161 " syntax for a plain "]" can be: "[]ws]" and "[^]ws]"; or, "[ws[.xs]ys.]zs]"
162 " and "[^ws[.xs]ys.]zs]"; see §9.3.5 RE Bracket Expression (in XBD).
163 exec 'syn region ' . itemGroup . ' matchgroup=NONE start="\[[!^]\=\\\=\]" matchgroup=' . bracketGroup . ' end="\]" contains=@shBracketExprList,shDoubleQuote,' . skipRightBracketGroup . ' ' . extraArgs
164 " Strive to handle "[]...[]" etc.
165 exec 'syn region ' . itemGroup . ' matchgroup=NONE start="\[[!^]\=\\\=\]\%(\[[^]]\+\]\|[^]]\)\{-}\[[:.=]\@!" matchgroup=' . bracketGroup . ' end="\]" contains=@shBracketExprList,shDoubleQuote,' . skipLeftBracketGroup . ' ' . extraArgs
166
167 if !exists("g:skip_sh_syntax_inits")
168 exec 'hi def link ' . skipLeftBracketGroup . ' ' . itemGroup
169 exec 'hi def link ' . skipRightBracketGroup . ' ' . itemGroup
170 exec 'hi def link ' . invGroup . ' Underlined'
171 endif
172endfun
173
174call s:GenerateBracketExpressionItems({'itemGroup': 'shBracketExpr', 'bracketGroup': 'shBracketExprDelim'})
175
Bram Moolenaarcd71fa32005-03-11 22:46:48 +0000176" sh syntax is case sensitive {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177syn case match
178
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000179" Clusters: contains=@... clusters {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180"==================================
Bram Moolenaar5c736222010-01-06 20:54:52 +0100181syn cluster shErrorList contains=shDoError,shIfError,shInError,shCaseError,shEsacError,shCurlyError,shParenError,shTestError,shOK
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200182if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000183 syn cluster ErrorList add=shDTestError
184endif
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100185syn cluster shArithParenList contains=shArithmetic,shArithParen,shCaseEsac,shComment,shDeref,shDerefVarArray,shDo,shDerefSimple,shEcho,shEscape,shExpr,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 +0000186syn cluster shArithList contains=@shArithParenList,shParenError
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100187syn cluster shBracketExprList contains=shCharClassOther,shCharClass,shCollSymb,shEqClass
Bram Moolenaard2855f52018-07-31 22:23:58 +0200188syn cluster shCaseEsacList contains=shCaseStart,shCaseLabel,shCase,shCaseBar,shCaseIn,shComment,shDeref,shDerefSimple,shCaseCommandSub,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote,shCtrlSeq,@shErrorList,shStringSpecial,shCaseRange
Johnothan Kingadd31ba2024-01-22 11:19:54 -0800189syn cluster shCaseList contains=@shCommandSubList,shCaseEsac,shColon,shCommandSub,shCommandSubBQ,shSubshare,shValsub,shComment,shDblBrace,shDo,shEcho,shExpr,shFor,shHereDoc,shIf,shHereString,shRedir,shSetList,shSource,shStatement,shVariable,shCtrlSeq
Bram Moolenaar23515b42020-11-29 14:36:24 +0100190if exists("b:is_kornshell") || exists("b:is_bash")
Lucien Grondin1858e2b2023-11-02 20:33:56 +0100191 syn cluster shCaseList add=shForPP,shDblParen
Bram Moolenaar23515b42020-11-29 14:36:24 +0100192endif
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100193syn cluster shCommandSubList contains=shAlias,shArithmetic,shBracketExpr,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 +0000194syn cluster shCurlyList contains=shNumber,shComma,shDeref,shDerefSimple,shDerefSpecial
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100195" COMBAK: removing shEscape from shDblQuoteList fails ksh04:43 -- Jun 09, 2022: I don't see the problem with ksh04, so am reinstating shEscape
Johnothan Kingadd31ba2024-01-22 11:19:54 -0800196syn cluster shDblQuoteList contains=shArithmetic,shCommandSub,shCommandSubBQ,shSubshare,shValsub,shDeref,shDerefSimple,shEscape,shPosnParm,shCtrlSeq,shSpecial,shSpecialDQ
Bram Moolenaaracb4f222016-01-10 15:59:26 +0100197syn cluster shDerefList contains=shDeref,shDerefSimple,shDerefVar,shDerefSpecial,shDerefWordError,shDerefPSR,shDerefPPS
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200198syn cluster shDerefVarList contains=shDerefOffset,shDerefOp,shDerefVarArray,shDerefOpError
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100199syn cluster shEchoList contains=shArithmetic,shBracketExpr,shCommandSub,shCommandSubBQ,shDerefVarArray,shSubshare,shValsub,shDeref,shDerefSimple,shEscape,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shCtrlSeq,shEchoQuote
200syn cluster shExprList1 contains=shBracketExpr,shNumber,shOperator,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shExpr,shDblBrace,shDeref,shDerefSimple,shCtrlSeq
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000201syn cluster shExprList2 contains=@shExprList1,@shCaseList,shTest
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100202syn cluster shFunctionList contains=shBracketExpr,@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 +0000203if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaar23515b42020-11-29 14:36:24 +0100204 syn cluster shFunctionList add=shRepeat,shDblBrace,shDblParen,shForPP
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100205 syn cluster shDerefList add=shCommandSubList,shEchoDeref
Bram Moolenaar7263a772007-05-10 17:35:54 +0000206endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207syn cluster shHereBeginList contains=@shCommandSubList
208syn cluster shHereList contains=shBeginHere,shHerePayload
209syn cluster shHereListDQ contains=shBeginHere,@shDblQuoteList,shHerePayload
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100210syn cluster shIdList contains=shArithmetic,shCommandSub,shCommandSubBQ,shDerefVarArray,shSubshare,shValsub,shWrapLineOperator,shSetOption,shComment,shDeref,shDerefSimple,shHereString,shNumber,shOperator,shRedir,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shExpr,shCtrlSeq,shStringSpecial,shAtExpr
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200211syn cluster shIfList contains=@shLoopList,shDblBrace,shDblParen,shFunctionKey,shFunctionOne,shFunctionTwo
Bram Moolenaar23515b42020-11-29 14:36:24 +0100212syn cluster shLoopList contains=@shCaseList,@shErrorList,shCaseEsac,shConditional,shDblBrace,shExpr,shFor,shIf,shOption,shSet,shTest,shTestOpr,shTouch
213if exists("b:is_kornshell") || exists("b:is_bash")
Lucien Grondina390e982023-10-28 21:40:48 +0200214 syn cluster shLoopList add=shForPP,shDblParen
Bram Moolenaar23515b42020-11-29 14:36:24 +0100215endif
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100216syn cluster shPPSLeftList contains=shAlias,shArithmetic,shBracketExpr,shCmdParenRegion,shCommandSub,shSubshare,shValsub,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 +0000217syn cluster shPPSRightList contains=shDeref,shDerefSimple,shEscape,shPosnParm
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100218syn cluster shSubShList contains=shBracketExpr,@shCommandSubList,shCommandSubBQ,shSubshare,shValsub,shCaseEsac,shColon,shCommandSub,shComment,shDo,shEcho,shExpr,shFor,shIf,shHereString,shRedir,shSetList,shSource,shStatement,shVariable,shCtrlSeq,shOperator
219syn cluster shTestList contains=shArithmetic,shBracketExpr,shCommandSub,shCommandSubBQ,shSubshare,shValsub,shCtrlSeq,shDeref,shDerefSimple,shDoubleQuote,shSpecialDQ,shExDoubleQuote,shExpr,shExSingleQuote,shNumber,shOperator,shSingleQuote,shTest,shTestOpr
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100220syn cluster shNoZSList contains=shSpecialNoZS
Johnothan Kingadd31ba2024-01-22 11:19:54 -0800221syn cluster shForList contains=shTestOpr,shNumber,shDerefSimple,shDeref,shCommandSub,shCommandSubBQ,shSubshare,shValsub,shArithmetic
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100222
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000223" Echo: {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224" ====
225" This one is needed INSIDE a CommandSub, so that `echo bla` be correct
Johnothan Kingadd31ba2024-01-22 11:19:54 -0800226if exists("b:is_kornshell")
227 syn 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 end="\ze[ \t\n;]}" contains=@shEchoList skipwhite nextgroup=shQuickComment
228 syn 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 end="\ze[ \t\n;]}" contains=@shEchoList skipwhite nextgroup=shQuickComment
229else
230 syn 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
231 syn 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
232endif
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100233if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
234 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
235 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
236endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100237syn match shEchoQuote contained '\%(\\\\\)*\\["`'()]'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238
Bram Moolenaarc236c162008-07-13 17:41:49 +0000239" This must be after the strings, so that ... \" will be correct
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100240syn 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=shBracketExpr,shNumber,shExSingleQuote,shSingleQuote,shDeref,shDerefSimple,shSpecialVar,shOperator,shExDoubleQuote,shDoubleQuote,shCtrlSeq
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000242" Alias: {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243" =====
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200244if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 syn match shStatement "\<alias\>"
Bram Moolenaarbe4e0162023-02-02 13:59:48 +0000246 syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]*\)\@=" skip="\\$" end="\>\|`"
247 syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]*=\)\@=" skip="\\$" end="="
248" syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+\)\@=" skip="\\$" end="\>\|`"
249" syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+=\)\@=" skip="\\$" end="="
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100250
251 " Touch: {{{1
252 " =====
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200253 syn match shTouch '\<touch\>[^;#]*' skipwhite nextgroup=shComment contains=shTouchCmd,shDoubleQuote,shSingleQuote,shDeref,shDerefSimple
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100254 syn match shTouchCmd '\<touch\>' contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255endif
256
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000257" Error Codes: {{{1
258" ============
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100259if !exists("g:sh_no_error")
Bram Moolenaare2719092015-01-10 15:09:25 +0100260 syn match shDoError "\<done\>"
261 syn match shIfError "\<fi\>"
262 syn match shInError "\<in\>"
263 syn match shCaseError ";;"
264 syn match shEsacError "\<esac\>"
265 syn match shCurlyError "}"
266 syn match shParenError ")"
267 syn match shOK '\.\(done\|fi\|in\|esac\)'
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200268 if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaare2719092015-01-10 15:09:25 +0100269 syn match shDTestError "]]"
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100270 endif
Bram Moolenaare2719092015-01-10 15:09:25 +0100271 syn match shTestError "]"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273
Bram Moolenaarc236c162008-07-13 17:41:49 +0000274" Options: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000275" ====================
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200276syn match shOption "\s\zs[-+][-_a-zA-Z#@]\+"
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100277syn match shOption "\s\zs--[^ \t$=`'"|);]\+"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278
Bram Moolenaar7263a772007-05-10 17:35:54 +0000279" File Redirection Highlighted As Operators: {{{1
280"===========================================
281syn match shRedir "\d\=>\(&[-0-9]\)\="
282syn match shRedir "\d\=>>-\="
283syn match shRedir "\d\=<\(&[-0-9]\)\="
284syn match shRedir "\d<<-\="
285
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000286" Operators: {{{1
287" ==========
Bram Moolenaar7263a772007-05-10 17:35:54 +0000288syn match shOperator "<<\|>>" contained
Bram Moolenaarc236c162008-07-13 17:41:49 +0000289syn match shOperator "[!&;|]" contained
Bram Moolenaar541f92d2015-06-19 13:27:23 +0200290syn match shOperator "[-=/*+%]\==" skipwhite nextgroup=shPattern
Bram Moolenaare90ee312010-08-05 22:08:47 +0200291syn match shPattern "\<\S\+\())\)\@=" contained contains=shExSingleQuote,shSingleQuote,shExDoubleQuote,shDoubleQuote,shDeref
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000293" Subshells: {{{1
294" ==========
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200295syn region shExpr transparent matchgroup=shExprRegion start="{" end="}" contains=@shExprList2 nextgroup=shSpecialNxt
296syn region shSubSh transparent matchgroup=shSubShRegion start="[^(]\zs(" end=")" contains=@shSubShList nextgroup=shSpecialNxt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000298" Tests: {{{1
299"=======
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100300syn region shExpr matchgroup=shRange start="\[\s\@=" skip=+\\\\\|\\$\|\[+ end="\]" contains=@shTestList,shSpecial
Bram Moolenaar5c736222010-01-06 20:54:52 +0100301syn region shTest transparent matchgroup=shStatement start="\<test\s" skip=+\\\\\|\\$+ matchgroup=NONE end="[;&|]"me=e-1 end="$" contains=@shExprList1
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100302syn region shNoQuote start='\S' skip='\%(\\\\\)*\\.' end='\ze\s' end="\ze['"]" contained contains=shBracketExpr,shDerefSimple,shDeref
Bram Moolenaar91c49372016-05-08 09:50:29 +0200303syn match shAstQuote contained '\*\ze"' nextgroup=shString
Bram Moolenaar541f92d2015-06-19 13:27:23 +0200304syn match shTestOpr contained '[^-+/%]\zs=' skipwhite nextgroup=shTestDoubleQuote,shTestSingleQuote,shTestPattern
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100305syn match shTestOpr contained "<=\|>=\|!=\|==\|=\~\|-.\>\|-\(nt\|ot\|ef\|eq\|ne\|lt\|le\|gt\|ge\)\>\|[!<>]"
Bram Moolenaar9964e462007-05-05 17:54:07 +0000306syn match shTestPattern contained '\w\+'
Bram Moolenaar91c49372016-05-08 09:50:29 +0200307syn region shTestDoubleQuote contained start='\%(\%(\\\\\)*\\\)\@<!"' skip=+\\\\\|\\"+ end='"' contains=shDeref,shDerefSimple,shDerefSpecial
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100308syn match shTestSingleQuote contained '\\.' nextgroup=shTestSingleQuote
Bram Moolenaar9964e462007-05-05 17:54:07 +0000309syn match shTestSingleQuote contained "'[^']*'"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310if exists("b:is_kornshell") || exists("b:is_bash")
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100311 syn region shDblBrace matchgroup=Delimiter start="\[\[\s\@=" skip=+\%(\\\\\)*\\$+ end="\]\]" contains=@shTestList,shAstQuote,shNoQuote,shComment
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100312 syn region shDblParen matchgroup=Delimiter start="((" skip=+\%(\\\\\)*\\$+ end="))" contains=@shTestList,shComment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313endif
314
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000315" Character Class In Range: {{{1
316" =========================
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100317syn match shCharClassOther contained "\[:\w\{-}:\]"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318syn match shCharClass contained "\[:\(backspace\|escape\|return\|xdigit\|alnum\|alpha\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|tab\):\]"
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100319syn match shCollSymb contained "\[\..\{-}\.\]"
320syn match shEqClass contained "\[=.\{-}=\]"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000322" Loops: do, if, while, until {{{1
323" ======
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100324ShFoldIfDoFor syn region shDo transparent matchgroup=shConditional start="\<do\>" matchgroup=shConditional end="\<done\>" contains=@shLoopList
325ShFoldIfDoFor syn region shIf transparent matchgroup=shConditional start="\<if\_s" matchgroup=shConditional skip=+-fi\>+ end="\<;\_s*then\>" end="\<fi\>" contains=@shIfList
326ShFoldIfDoFor 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 +0100327if exists("b:is_kornshell") || exists("b:is_bash")
328 ShFoldIfDoFor syn region shForPP matchgroup=shLoop start='\<for\>\_s*((' end='))' contains=@shForList
329endif
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100330
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200331if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000332 syn cluster shCaseList add=shRepeat
333 syn cluster shFunctionList add=shRepeat
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200334 syn region shRepeat matchgroup=shLoop start="\<while\_s" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen,shDblBrace
335 syn region shRepeat matchgroup=shLoop start="\<until\_s" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen,shDblBrace
336 if !exists("b:is_posix")
337 syn region shCaseEsac matchgroup=shConditional start="\<select\s" matchgroup=shConditional end="\<in\>" end="\<do\>" contains=@shLoopList
338 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000340 syn region shRepeat matchgroup=shLoop start="\<while\_s" end="\<do\>"me=e-2 contains=@shLoopList
341 syn region shRepeat matchgroup=shLoop start="\<until\_s" end="\<do\>"me=e-2 contains=@shLoopList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342endif
Bram Moolenaar572cb562005-08-05 21:35:02 +0000343syn region shCurlyIn contained matchgroup=Delimiter start="{" end="}" contains=@shCurlyList
344syn match shComma contained ","
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000346" Case: case...esac {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347" ====
Bram Moolenaard2855f52018-07-31 22:23:58 +0200348syn match shCaseBar contained skipwhite "\(^\|[^\\]\)\(\\\\\)*\zs|" nextgroup=shCase,shCaseStart,shCaseBar,shComment,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote
349syn match shCaseStart contained skipwhite skipnl "(" nextgroup=shCase,shCaseBar
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100350syn match shCaseLabel contained skipwhite "\%(\\.\|[-a-zA-Z0-9_*.]\)\+" contains=shBracketExpr
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100351if exists("b:is_bash")
Bram Moolenaard2855f52018-07-31 22:23:58 +0200352 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 +0100353elseif exists("b:is_kornshell")
354 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 +0200355else
356 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 +0100357endif
Bram Moolenaard2855f52018-07-31 22:23:58 +0200358ShFoldIfDoFor syn region shCaseEsac matchgroup=shConditional start="\<case\>" end="\<esac\>" contains=@shCaseEsacList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100359
Bram Moolenaardf177f62005-02-22 08:39:57 +0000360syn keyword shCaseIn contained skipwhite skipnl in nextgroup=shCase,shCaseStart,shCaseBar,shComment,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100361if exists("b:is_bash") || exists("b:is_kornshell")
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200362 syn region shCaseExSingleQuote matchgroup=shQuote start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial,shSpecial skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100363elseif !exists("g:sh_no_error")
Bram Moolenaardf177f62005-02-22 08:39:57 +0000364 syn region shCaseExSingleQuote matchgroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
365endif
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200366syn region shCaseSingleQuote matchgroup=shQuote start=+'+ end=+'+ contains=shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
367syn region shCaseDoubleQuote matchgroup=shQuote start=+"+ skip=+\\\\\|\\.+ end=+"+ contains=@shDblQuoteList,shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368syn region shCaseCommandSub start=+`+ skip=+\\\\\|\\.+ end=+`+ contains=@shCommandSubList skipwhite skipnl nextgroup=shCaseBar contained
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100369call s:GenerateBracketExpressionItems({'itemGroup': 'shCaseRange', 'bracketGroup': 'shBracketExprDelim', 'extraArgs': 'skip=+\\\\+ contained'})
Bram Moolenaar97d62492012-11-15 21:28:22 +0100370if exists("b:is_bash")
Bram Moolenaar97d62492012-11-15 21:28:22 +0100371 syn match shCharClass '\[:\%(alnum\|alpha\|ascii\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|word\|or\|xdigit\):\]' contained
Bram Moolenaar97d62492012-11-15 21:28:22 +0100372endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000373" Misc: {{{1
374"======
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375syn match shWrapLineOperator "\\$"
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200376syn region shCommandSubBQ start="`" skip="\\\\\|\\." end="`" contains=shBQComment,@shCommandSubList
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100377"COMBAK: see ksh13:50
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100378"syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.' nextgroup=shSingleQuote,shDoubleQuote,shComment
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100379"COMBAK: see sh11:27
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100380syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.' nextgroup=shComment
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100381"COMBAK: see ksh13:53
382"syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000384" $() and $(()): {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385" $(..) is not supported by sh (Bourne shell). However, apparently
386" some systems (HP?) have as their /bin/sh a (link to) Korn shell
387" (ie. Posix compliant shell). /bin/ksh should work for those
388" systems too, however, so the following syntax will flag $(..) as
389" an Error under /bin/sh. By consensus of vimdev'ers!
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100390if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
Bram Moolenaardd60c362023-02-27 15:49:53 +0000391 syn region shCommandSub matchgroup=shCmdSubRegion start="\$(\ze[^(]" skip='\\\\\|\\.' end=")" contains=@shCommandSubList
Johnothan Kingadd31ba2024-01-22 11:19:54 -0800392 if exists("b:is_kornshell")
393 syn region shSubshare matchgroup=shCmdSubRegion start="\${\ze[ \t\n<]" skip='\\\\\|\\.' end="\zs[ \t\n;]}" contains=@shCommandSubList
394 syn region shValsub matchgroup=shCmdSubRegion start="\${|" skip='\\\\\|\\.' end="}" contains=@shCommandSubList
395 endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000396 syn region shArithmetic matchgroup=shArithRegion start="\$((" skip='\\\\\|\\.' end="))" contains=@shArithList
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200397 syn region shArithmetic matchgroup=shArithRegion start="\$\[" skip='\\\\\|\\.' end="\]" contains=@shArithList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 syn match shSkipInitWS contained "^\s\+"
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100399 syn region shArithParen matchgroup=shArithRegion contained start="(" end=")" contains=@shArithParenList
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100400elseif !exists("g:sh_no_error")
Bram Moolenaardf177f62005-02-22 08:39:57 +0000401 syn region shCommandSub matchgroup=Error start="\$(" end=")" contains=@shCommandSubList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402endif
dkearns1bdc9432024-03-05 05:14:08 +1100403syn region shCmdParenRegion matchgroup=shCmdSubRegion start="((\@!" skip='\\\\\|\\.' end=")" contains=@shCommandSubList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404
405if exists("b:is_bash")
406 syn cluster shCommandSubList add=bashSpecialVariables,bashStatement
407 syn cluster shCaseList add=bashAdminStatement,bashStatement
Jon Parisecf1f5552025-01-06 18:27:38 +0100408 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 PS0 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 +0100409 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 +0000410 syn keyword bashAdminStatement daemon killall killproc nice reload restart start status stop
Bram Moolenaar97d62492012-11-15 21:28:22 +0100411 syn keyword bashStatement command compgen
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412endif
413
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200414if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 syn cluster shCommandSubList add=kshSpecialVariables,kshStatement
416 syn cluster shCaseList add=kshStatement
417 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 +0100418 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 +0100419 syn keyword kshStatement command setgroups setsenv
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420endif
421
422syn match shSource "^\.\s"
423syn match shSource "\s\.\s"
Bram Moolenaar5c736222010-01-06 20:54:52 +0100424"syn region shColon start="^\s*:" end="$" end="\s#"me=e-2 contains=@shColonList
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100425"syn region shColon start="^\s*\zs:" end="$" end="\s#"me=e-2
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200426if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200427 syn match shColon '^\s*\zs:'
428endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000430" String And Character Constants: {{{1
431"================================
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200432syn match shNumber "\<\d\+\>#\="
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200433syn match shNumber "\<-\=\.\=\d\+\>#\="
Bram Moolenaar802a0d92016-06-26 16:17:58 +0200434syn match shCtrlSeq "\\\d\d\d\|\\[abcfnrtv0]" contained
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100435if exists("b:is_bash") || exists("b:is_kornshell")
Bram Moolenaar802a0d92016-06-26 16:17:58 +0200436 syn match shSpecial "[^\\]\(\\\\\)*\zs\\\o\o\o\|\\x\x\x\|\\c[^"]\|\\[abefnrtv]" contained
437 syn match shSpecial "^\(\\\\\)*\zs\\\o\o\o\|\\x\x\x\|\\c[^"]\|\\[abefnrtv]" contained
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200438 syn region shExSingleQuote matchgroup=shQuote start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial,shSpecial nextgroup=shSpecialNxt
439 syn region shExDoubleQuote matchgroup=shQuote start=+\$"+ skip=+\\\\\|\\.\|\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,shSpecial nextgroup=shSpecialNxt
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100440elseif !exists("g:sh_no_error")
Bram Moolenaar9964e462007-05-05 17:54:07 +0000441 syn region shExSingleQuote matchGroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial
Bram Moolenaare90ee312010-08-05 22:08:47 +0200442 syn region shExDoubleQuote matchGroup=Error start=+\$"+ skip=+\\\\\|\\.+ end=+"+ contains=shStringSpecial
Bram Moolenaardf177f62005-02-22 08:39:57 +0000443endif
Bram Moolenaard2855f52018-07-31 22:23:58 +0200444syn region shSingleQuote matchgroup=shQuote start=+'+ end=+'+ contains=@Spell nextgroup=shSpecialStart,shSpecialSQ
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +0200445syn region shDoubleQuote matchgroup=shQuote start=+\%(\%(\\\\\)*\\\)\@<!"+ skip=+\\.+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
Bram Moolenaar802a0d92016-06-26 16:17:58 +0200446syn match shStringSpecial "[^[:print:] \t]" contained
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +0200447syn match shStringSpecial "[^\\]\zs\%(\\\\\)*\(\\[\\"'`$()#]\)\+" nextgroup=shComment
448syn match shSpecialSQ "[^\\]\zs\%(\\\\\)*\(\\[\\"'`$()#]\)\+" contained nextgroup=shBkslshSnglQuote,@shNoZSList
449syn match shSpecialDQ "[^\\]\zs\%(\\\\\)*\(\\[\\"'`$()#]\)\+" contained nextgroup=shBkslshDblQuote,@shNoZSList
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200450syn match shSpecialStart "\%(\\\\\)*\\[\\"'`$()#]" contained nextgroup=shBkslshSnglQuote,shBkslshDblQuote,@shNoZSList
Bram Moolenaar60cce2f2015-10-13 23:21:27 +0200451syn match shSpecial "^\%(\\\\\)*\\[\\"'`$()#]"
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100452syn match shSpecialNoZS contained "\%(\\\\\)*\\[\\"'`$()#]"
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200453syn match shSpecialNxt contained "\\[\\"'`$()#]"
Bram Moolenaar47e13952020-05-12 22:49:12 +0200454"syn region shBkslshSnglQuote contained matchgroup=shQuote start=+'+ end=+'+ contains=@Spell nextgroup=shSpecialStart
455"syn region shBkslshDblQuote contained matchgroup=shQuote start=+"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000457" Comments: {{{1
458"==========
Bram Moolenaar5c736222010-01-06 20:54:52 +0100459syn cluster shCommentGroup contains=shTodo,@Spell
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200460if exists("b:is_bash")
461 syn match shTodo contained "\<\%(COMBAK\|FIXME\|TODO\|XXX\)\ze:\=\>"
462else
463 syn keyword shTodo contained COMBAK FIXME TODO XXX
464endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100465syn match shComment "^\s*\zs#.*$" contains=@shCommentGroup
466syn match shComment "\s\zs#.*$" contains=@shCommentGroup
Bram Moolenaar97d62492012-11-15 21:28:22 +0100467syn match shComment contained "#.*$" contains=@shCommentGroup
Bram Moolenaar113cb512021-11-07 20:27:04 +0000468syn match shQuickComment contained "#.*$" contains=@shCommentGroup
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200469syn match shBQComment contained "#.\{-}\ze`" contains=@shCommentGroup
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000471" Here Documents: {{{1
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +0200472" (modified by Felipe Contreras)
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000473" =========================================
Bram Moolenaar86b48162022-12-06 18:20:10 +0000474ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc01 start="<<\s*\z([^ \t|>]\+\)" matchgroup=shHereDoc01 end="^\z1$" contains=@shDblQuoteList
Bram Moolenaar71badf92023-04-22 22:40:14 +0100475ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc02 start="<<-\s*\z([^ \t|>]\+\)" matchgroup=shHereDoc02 end="^\t*\z1$" contains=@shDblQuoteList
Bram Moolenaar86b48162022-12-06 18:20:10 +0000476ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc03 start="<<\s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc03 end="^\z1$"
Bram Moolenaar71badf92023-04-22 22:40:14 +0100477ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc04 start="<<-\s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc04 end="^\t*\z1$"
Bram Moolenaar86b48162022-12-06 18:20:10 +0000478ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc05 start="<<\s*'\z([^']\+\)'" matchgroup=shHereDoc05 end="^\z1$"
Bram Moolenaar71badf92023-04-22 22:40:14 +0100479ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc06 start="<<-\s*'\z([^']\+\)'" matchgroup=shHereDoc06 end="^\t*\z1$"
Bram Moolenaar86b48162022-12-06 18:20:10 +0000480ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc07 start="<<\s*\"\z([^"]\+\)\"" matchgroup=shHereDoc07 end="^\z1$"
Bram Moolenaar71badf92023-04-22 22:40:14 +0100481ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc08 start="<<-\s*\"\z([^"]\+\)\"" matchgroup=shHereDoc08 end="^\t*\z1$"
Bram Moolenaar86b48162022-12-06 18:20:10 +0000482ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc09 start="<<\s*\\\_$\_s*\z([^ \t|>]\+\)" matchgroup=shHereDoc09 end="^\z1$" contains=@shDblQuoteList
Bram Moolenaar71badf92023-04-22 22:40:14 +0100483ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc10 start="<<-\s*\\\_$\_s*\z([^ \t|>]\+\)" matchgroup=shHereDoc10 end="^\t*\z1$" contains=@shDblQuoteList
Bram Moolenaar86b48162022-12-06 18:20:10 +0000484ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc11 start="<<\s*\\\_$\_s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc11 end="^\z1$"
Bram Moolenaar71badf92023-04-22 22:40:14 +0100485ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc12 start="<<-\s*\\\_$\_s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc12 end="^\t*\z1$"
Bram Moolenaar86b48162022-12-06 18:20:10 +0000486ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc13 start="<<\s*\\\_$\_s*'\z([^']\+\)'" matchgroup=shHereDoc13 end="^\z1$"
Bram Moolenaar71badf92023-04-22 22:40:14 +0100487ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc14 start="<<-\s*\\\_$\_s*'\z([^']\+\)'" matchgroup=shHereDoc14 end="^\t*\z1$"
Bram Moolenaar86b48162022-12-06 18:20:10 +0000488ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc15 start="<<\s*\\\_$\_s*\"\z([^"]\+\)\"" matchgroup=shHereDoc15 end="^\z1$"
Bram Moolenaar71badf92023-04-22 22:40:14 +0100489ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc16 start="<<-\s*\\\_$\_s*\"\z([^"]\+\)\"" matchgroup=shHereDoc16 end="^\t*\z1$"
Bram Moolenaar23515b42020-11-29 14:36:24 +0100490
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000492" Here Strings: {{{1
493" =============
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200494" available for: bash; ksh (really should be ksh93 only) but not if its a posix
Bram Moolenaar690afe12017-01-28 18:34:47 +0100495if exists("b:is_bash") || (exists("b:is_kornshell") && !exists("b:is_posix"))
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200496 syn match shHereString "<<<" skipwhite nextgroup=shCmdParenRegion
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000497endif
498
499" Identifiers: {{{1
500"=============
Bram Moolenaarc236c162008-07-13 17:41:49 +0000501syn match shSetOption "\s\zs[-+][a-zA-Z0-9]\+\>" contained
Bram Moolenaar23515b42020-11-29 14:36:24 +0100502syn match shVariable "\<\h\w*\ze=" nextgroup=shVarAssign
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100503if exists("b:is_bash")
504 " The subscript form for array values, e.g. "foo=([2]=10 [4]=100)".
505 syn region shArrayValue contained start="\[\%(..\{-}\]=\)\@=" end="\]=\@=" contains=@shArrayValueList nextgroup=shVarAssign
506 syn cluster shArrayValueList contains=shArithmetic,shArithParen,shCommandSub,shDeref,shDerefSimple,shExpr,shNumber,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shSpecial,shParen,bashSpecialVariables,shParenError
507endif
508if exists("b:is_bash") || exists("b:is_kornshell")
509 syn match shVariable "\<\h\w*\%(\[..\{-}\]\)\=\ze\%([|^&*/%+-]\|[<^]<\|[>^]>\)\==" contains=shDerefVarArray nextgroup=shVarAssign
510 syn match shVarAssign contained "\%([|^&*/%+-]\|[<^]<\|[>^]>\)\==" nextgroup=shArrayRegion,shPattern,shDeref,shDerefSimple,shDoubleQuote,shExDoubleQuote,shSingleQuote,shExSingleQuote,shVar
511 syn region shArrayRegion contained matchgroup=shShellVariables start="(" skip='\\\\\|\\.' end=")" contains=@shArrayValueList,shArrayValue,shComment
512else
513 syn match shVarAssign contained "=" nextgroup=shPattern,shDeref,shDerefSimple,shDoubleQuote,shExDoubleQuote,shSingleQuote,shExSingleQuote,shVar
514endif
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100515syn match shVar contained "\h\w*"
Bram Moolenaarbc488a72013-07-05 21:01:22 +0200516syn region shAtExpr contained start="@(" end=")" contains=@shIdList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517if exists("b:is_bash")
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100518 syn match shSet "^\s*set\ze\s\+$"
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100519 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 +0100520 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 +0200521elseif exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100522 syn match shSet "^\s*set\ze\s\+$"
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200523 if exists("b:is_dash")
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100524 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 +0200525 endif
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100526 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 +0100527 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 +0000528else
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100529 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 +0000530endif
531
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100532" KornShell namespace: {{{1
533if exists("b:is_kornshell")
534 syn keyword shFunctionKey namespace skipwhite skipnl nextgroup=shFunctionTwo
535endif
536
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000537" Functions: {{{1
Bram Moolenaar690afe12017-01-28 18:34:47 +0100538if !exists("b:is_posix")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000539 syn keyword shFunctionKey function skipwhite skipnl nextgroup=shFunctionTwo
540endif
541
542if exists("b:is_bash")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200543 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
544 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
545 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
546 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 +0000547else
Bram Moolenaar91c49372016-05-08 09:50:29 +0200548 ShFoldFunctions syn region shFunctionOne matchgroup=shFunction start="^\s*\h\w*\s*()\_s*{" end="}" contains=@shFunctionList skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
549 ShFoldFunctions syn region shFunctionTwo matchgroup=shFunction start="\%(do\)\@!\&\<\h\w*\>\s*\%(()\)\=\_s*{" end="}" contains=shFunctionKey,@shFunctionList contained skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
550 ShFoldFunctions syn region shFunctionThree matchgroup=shFunction start="^\s*\h\w*\s*()\_s*(" end=")" contains=@shFunctionList skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
551 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 +0000552endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000554" Parameter Dereferencing: {{{1
555" ========================
Bram Moolenaarbe4e0162023-02-02 13:59:48 +0000556" Note: sh04 failure with following line
557"if !exists("g:sh_no_error") && !(exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix"))
558if !exists("g:sh_no_error")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200559 syn match shDerefWordError "[^}$[~]" contained
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100560endif
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100561syn match shDerefSimple "\$\%(\h\w*\|\d\)" nextgroup=@shNoZSList
Johnothan Kingadd31ba2024-01-22 11:19:54 -0800562if exists("b:is_kornshell")
563 syn region shDeref matchgroup=PreProc start="\${\ze[^ \t\n<|]" end="}" contains=@shDerefList,shDerefVarArray nextgroup=shSpecialStart
564else
565 syn region shDeref matchgroup=PreProc start="\${" end="}" contains=@shDerefList,shDerefVarArray nextgroup=shSpecialStart
566endif
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100567syn match shDerefSimple "\$[-#*@!?]" nextgroup=@shNoZSList
568syn match shDerefSimple "\$\$" nextgroup=@shNoZSList
Bram Moolenaar47e13952020-05-12 22:49:12 +0200569syn match shDerefSimple "\${\d}" nextgroup=@shNoZSList nextgroup=shSpecialStart
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200570if exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaar47e13952020-05-12 22:49:12 +0200571 syn region shDeref matchgroup=PreProc start="\${##\=" end="}" contains=@shDerefList nextgroup=@shSpecialNoZS,shSpecialStart
572 syn region shDeref matchgroup=PreProc start="\${\$\$" end="}" contains=@shDerefList nextgroup=@shSpecialNoZS,shSpecialStart
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573endif
574
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100575" ksh: ${.sh.*} variables: {{{1
576" ========================================
577if exists("b:is_kornshell")
Bram Moolenaar6ba83ba2022-06-12 22:15:57 +0100578 syn match shDerefVar contained "\.\+" nextgroup=@shDerefVarList
579endif
580
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100581" ksh: ${!var[*]} array index list syntax: {{{1
582" ========================================
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200583if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100584 syn region shDeref matchgroup=PreProc start="\${!" end="}" contains=@shDerefVarArray
585endif
586
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000587" bash: ${!prefix*} and ${#parameter}: {{{1
588" ====================================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589if exists("b:is_bash")
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200590 syn region shDeref matchgroup=PreProc start="\${!" end="\*\=}" contains=@shDerefList,shDerefOffset
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200591 syn match shDerefVar contained "{\@<=!\h\w*" nextgroup=@shDerefVarList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592endif
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100593if exists("b:is_kornshell")
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200594 syn match shDerefVar contained "{\@<=!\h\w*[[:alnum:]_.]*" nextgroup=@shDerefVarList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100595endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200597syn match shDerefSpecial contained "{\@<=[-*@?0]" nextgroup=shDerefOp,shDerefOffset,shDerefOpError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598syn match shDerefSpecial contained "\({[#!]\)\@<=[[:alnum:]*@_]\+" nextgroup=@shDerefVarList,shDerefOp
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200599syn match shDerefVar contained "{\@<=\h\w*" nextgroup=@shDerefVarList
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200600syn match shDerefVar contained '\d' nextgroup=@shDerefVarList
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200601if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200602 syn match shDerefVar contained "{\@<=\h\w*[[:alnum:]_.]*" nextgroup=@shDerefVarList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100603endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000605" sh ksh bash : ${var[... ]...} array reference: {{{1
Lucien Grondince3b0132023-11-04 09:41:37 +0100606syn region shDerefVarArray contained matchgroup=shDeref start="\[" end="]" contains=@shCommandSubList nextgroup=shDerefOp,shDerefOpError,shDerefOffset
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000608" Special ${parameter OPERATOR word} handling: {{{1
Bram Moolenaare2719092015-01-10 15:09:25 +0100609" sh ksh bash : ${parameter:-word} word is default value
610" sh ksh bash : ${parameter:=word} assign word as default value
611" sh ksh bash : ${parameter:?word} display word if parameter is null
612" sh ksh bash : ${parameter:+word} use word if parameter is not null, otherwise nothing
613" ksh bash : ${parameter#pattern} remove small left pattern
614" ksh bash : ${parameter##pattern} remove large left pattern
615" ksh bash : ${parameter%pattern} remove small right pattern
616" ksh bash : ${parameter%%pattern} remove large right pattern
617" bash : ${parameter^pattern} Case modification
618" bash : ${parameter^^pattern} Case modification
619" bash : ${parameter,pattern} Case modification
620" bash : ${parameter,,pattern} Case modification
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200621" bash : ${@:start:qty} display command line arguments from start to start+qty-1 (inferred)
Bram Moolenaardd60c362023-02-27 15:49:53 +0000622" bash : ${parameter@operator} transforms parameter (operator∈[uULqEPARa])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623syn cluster shDerefPatternList contains=shDerefPattern,shDerefString
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100624if !exists("g:sh_no_error")
625 syn match shDerefOpError contained ":[[:punct:]]"
626endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627syn match shDerefOp contained ":\=[-=?]" nextgroup=@shDerefPatternList
628syn match shDerefOp contained ":\=+" nextgroup=@shDerefPatternList
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200629if exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200630 syn match shDerefOp contained "#\{1,2}" nextgroup=@shDerefPatternList
631 syn match shDerefOp contained "%\{1,2}" nextgroup=@shDerefPatternList
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100632 syn match shDerefPattern contained "[^{}]\+" contains=shDeref,shDerefSimple,shDerefPattern,shDerefString,shCommandSub,shDerefEscape nextgroup=shDerefPattern skipnl
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 syn region shDerefPattern contained start="{" end="}" contains=shDeref,shDerefSimple,shDerefString,shCommandSub nextgroup=shDerefPattern
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100634 " Match parametric bracket expressions with a leading whitespace character.
635 syn region shDerefPattern contained matchgroup=shBracketExprDelim start="\[" end="\]" contains=@shBracketExprList,shDoubleQuote nextgroup=shDerefPattern
636 call s:GenerateBracketExpressionItems({'itemGroup': 'shDerefPattern', 'bracketGroup': 'shBracketExprDelim', 'extraArgs': 'contained nextgroup=shDerefPattern'})
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000637 syn match shDerefEscape contained '\%(\\\\\)*\\.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638endif
Bram Moolenaard960d762011-09-21 19:22:10 +0200639if exists("b:is_bash")
640 syn match shDerefOp contained "[,^]\{1,2}" nextgroup=@shDerefPatternList
Bram Moolenaardd60c362023-02-27 15:49:53 +0000641 syn match shDerefOp contained "@[uULQEPAKa]"
Bram Moolenaard960d762011-09-21 19:22:10 +0200642endif
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200643syn region shDerefString contained matchgroup=shDerefDelim start=+\%(\\\)\@<!'+ end=+'+ contains=shStringSpecial
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200644syn region shDerefString contained matchgroup=shDerefDelim start=+\%(\\\)\@<!"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial
Bram Moolenaarc236c162008-07-13 17:41:49 +0000645syn match shDerefString contained "\\["']" nextgroup=shDerefPattern
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200647if exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix")
648 " bash ksh posix : ${parameter:offset}
649 " bash ksh posix : ${parameter:offset:length}
650 syn region shDerefOffset contained start=':[^-=?+]' end='\ze:' end='\ze}' contains=shDeref,shDerefSimple,shDerefEscape nextgroup=shDerefLen,shDeref,shDerefSimple
651 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 +0200652 syn match shDerefLen contained ":[^}]\+" contains=shDeref,shDerefSimple,shArithmetic
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200653endif
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000654
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200655if exists("b:is_bash")
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100656 " bash : ${parameter/pattern/string}
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000657 " bash : ${parameter//pattern/string}
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000658 syn match shDerefPPS contained '/\{1,2}' nextgroup=shDerefPPSleft
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200659 syn region shDerefPPSleft contained start='.' skip=@\%(\\\\\)*\\/@ matchgroup=shDerefOp end='/' end='\ze}' end='"' nextgroup=shDerefPPSright contains=@shPPSLeftList
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100660 syn region shDerefPPSright contained start='.' skip=@\%(\\\\\)\+@ end='\ze}' contains=@shPPSRightList
Bram Moolenaaracb4f222016-01-10 15:59:26 +0100661
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100662 " bash : ${parameter/#pattern/string}
663 " bash : ${parameter/%pattern/string}
664 syn match shDerefPSR contained '/[#%]' nextgroup=shDerefPSRleft,shDoubleQuote,shSingleQuote
665 syn region shDerefPSRleft contained start='[^"']' skip=@\%(\\\\\)*\\/@ matchgroup=shDerefOp end='/' end='\ze}' nextgroup=shDerefPSRright contains=shBracketExpr
Bram Moolenaaracb4f222016-01-10 15:59:26 +0100666 syn region shDerefPSRright contained start='.' skip=@\%(\\\\\)\+@ end='\ze}'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667endif
668
Bram Moolenaarc236c162008-07-13 17:41:49 +0000669" Arithmetic Parenthesized Expressions: {{{1
Bram Moolenaarbc488a72013-07-05 21:01:22 +0200670"syn region shParen matchgroup=shArithRegion start='[^$]\zs(\%(\ze[^(]\|$\)' end=')' contains=@shArithParenList
671syn region shParen matchgroup=shArithRegion start='\$\@!(\%(\ze[^(]\|$\)' end=')' contains=@shArithParenList
Bram Moolenaarc236c162008-07-13 17:41:49 +0000672
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200673" Additional sh Keywords: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000674" ===================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675syn keyword shStatement break cd chdir continue eval exec exit kill newgrp pwd read readonly return shift test trap ulimit umask wait
676syn keyword shConditional contained elif else then
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100677if !exists("g:sh_no_error")
678 syn keyword shCondError elif else then
679endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200681" Additional ksh Keywords and Aliases: {{{1
682" ===================================
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100683if exists("b:is_kornshell") || exists("b:is_posix")
684 syn keyword shStatement bg builtin disown enum export false fg getconf getopts hist jobs let printf sleep true unalias whence
685 syn keyword shStatement typeset skipwhite nextgroup=shSetOption
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200686 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 +0100687 if exists("b:is_posix")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000688 syn keyword shStatement command
689 else
690 syn keyword shStatement time
691 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200693" Additional bash Keywords: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000694" =====================
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100695elseif exists("b:is_bash")
696 syn keyword shStatement bg builtin disown export false fg getopts jobs let printf sleep true unalias
697 syn keyword shStatement typeset nextgroup=shSetOption
698 syn keyword shStatement fc hash history source suspend times type
Lucien Grondinb16fc982024-01-01 19:00:41 +0100699 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 +0100700else
701 syn keyword shStatement login newgrp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702endif
703
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000704" Synchronization: {{{1
705" ================
Bram Moolenaar03413f42016-04-12 21:07:15 +0200706if !exists("g:sh_minlines")
707 let s:sh_minlines = 200
708else
709 let s:sh_minlines= g:sh_minlines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710endif
Bram Moolenaar03413f42016-04-12 21:07:15 +0200711if !exists("g:sh_maxlines")
712 let s:sh_maxlines = 2*s:sh_minlines
713 if s:sh_maxlines < 25
714 let s:sh_maxlines= 25
715 endif
716else
717 let s:sh_maxlines= g:sh_maxlines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718endif
Bram Moolenaar03413f42016-04-12 21:07:15 +0200719exec "syn sync minlines=" . s:sh_minlines . " maxlines=" . s:sh_maxlines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720syn sync match shCaseEsacSync grouphere shCaseEsac "\<case\>"
721syn sync match shCaseEsacSync groupthere shCaseEsac "\<esac\>"
722syn sync match shDoSync grouphere shDo "\<do\>"
723syn sync match shDoSync groupthere shDo "\<done\>"
724syn sync match shForSync grouphere shFor "\<for\>"
725syn sync match shForSync groupthere shFor "\<in\>"
726syn sync match shIfSync grouphere shIf "\<if\>"
727syn sync match shIfSync groupthere shIf "\<fi\>"
728syn sync match shUntilSync grouphere shRepeat "\<until\>"
729syn sync match shWhileSync grouphere shRepeat "\<while\>"
730
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000731" Default Highlighting: {{{1
732" =====================
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200733if !exists("skip_sh_syntax_inits")
734 hi def link shArithRegion shShellVariables
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100735 hi def link shArrayValue shDeref
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200736 hi def link shAstQuote shDoubleQuote
737 hi def link shAtExpr shSetList
Bram Moolenaard2855f52018-07-31 22:23:58 +0200738 hi def link shBkslshSnglQuote shSingleQuote
739 hi def link shBkslshDblQuote shDOubleQuote
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200740 hi def link shBeginHere shRedir
741 hi def link shCaseBar shConditional
742 hi def link shCaseCommandSub shCommandSub
743 hi def link shCaseDoubleQuote shDoubleQuote
744 hi def link shCaseIn shConditional
745 hi def link shQuote shOperator
746 hi def link shCaseSingleQuote shSingleQuote
747 hi def link shCaseStart shConditional
748 hi def link shCmdSubRegion shShellVariables
749 hi def link shColon shComment
750 hi def link shDerefOp shOperator
751 hi def link shDerefPOL shDerefOp
752 hi def link shDerefPPS shDerefOp
753 hi def link shDerefPSR shDerefOp
754 hi def link shDeref shShellVariables
755 hi def link shDerefDelim shOperator
756 hi def link shDerefSimple shDeref
757 hi def link shDerefSpecial shDeref
758 hi def link shDerefString shDoubleQuote
759 hi def link shDerefVar shDeref
760 hi def link shDoubleQuote shString
761 hi def link shEcho shString
762 hi def link shEchoDelim shOperator
763 hi def link shEchoQuote shString
764 hi def link shForPP shLoop
765 hi def link shFunction Function
766 hi def link shEmbeddedEcho shString
767 hi def link shEscape shCommandSub
768 hi def link shExDoubleQuote shDoubleQuote
769 hi def link shExSingleQuote shSingleQuote
770 hi def link shHereDoc shString
771 hi def link shHereString shRedir
772 hi def link shHerePayload shHereDoc
773 hi def link shLoop shStatement
774 hi def link shSpecialNxt shSpecial
775 hi def link shNoQuote shDoubleQuote
776 hi def link shOption shCommandSub
777 hi def link shPattern shString
778 hi def link shParen shArithmetic
779 hi def link shPosnParm shShellVariables
780 hi def link shQuickComment shComment
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200781 hi def link shBQComment shComment
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200782 hi def link shRange shOperator
783 hi def link shRedir shOperator
784 hi def link shSetListDelim shOperator
785 hi def link shSetOption shOption
786 hi def link shSingleQuote shString
787 hi def link shSource shOperator
788 hi def link shStringSpecial shSpecial
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200789 hi def link shSpecialStart shSpecial
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200790 hi def link shSubShRegion shOperator
791 hi def link shTestOpr shConditional
792 hi def link shTestPattern shString
793 hi def link shTestDoubleQuote shString
794 hi def link shTestSingleQuote shString
795 hi def link shTouchCmd shStatement
796 hi def link shVariable shSetList
797 hi def link shWrapLineOperator shOperator
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200799 if exists("b:is_bash")
800 hi def link bashAdminStatement shStatement
801 hi def link bashSpecialVariables shShellVariables
802 hi def link bashStatement shStatement
803 hi def link shCharClass shSpecial
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200804 hi def link shDerefOffset shDerefOp
805 hi def link shDerefLen shDerefOffset
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100806 endif
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200807 if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200808 hi def link kshSpecialVariables shShellVariables
809 hi def link kshStatement shStatement
810 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200812 if !exists("g:sh_no_error")
813 hi def link shCaseError Error
814 hi def link shCondError Error
815 hi def link shCurlyError Error
816 hi def link shDerefOpError Error
817 hi def link shDerefWordError Error
818 hi def link shDoError Error
819 hi def link shEsacError Error
820 hi def link shIfError Error
821 hi def link shInError Error
822 hi def link shParenError Error
823 hi def link shTestError Error
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200824 if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200825 hi def link shDTestError Error
826 endif
827 endif
828
829 hi def link shArithmetic Special
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100830 hi def link shBracketExprDelim Delimiter
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200831 hi def link shCharClass Identifier
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100832 hi def link shCollSymb shCharClass
833 hi def link shEqClass shCharClass
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200834 hi def link shSnglCase Statement
835 hi def link shCommandSub Special
Bram Moolenaard2855f52018-07-31 22:23:58 +0200836 hi def link shCommandSubBQ shCommandSub
Johnothan Kingadd31ba2024-01-22 11:19:54 -0800837 hi def link shSubshare shCommandSub
838 hi def link shValsub shCommandSub
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200839 hi def link shComment Comment
840 hi def link shConditional Conditional
841 hi def link shCtrlSeq Special
842 hi def link shExprRegion Delimiter
843 hi def link shFunctionKey Function
844 hi def link shFunctionName Function
845 hi def link shNumber Number
846 hi def link shOperator Operator
847 hi def link shRepeat Repeat
848 hi def link shSet Statement
849 hi def link shSetList Identifier
850 hi def link shShellVariables PreProc
851 hi def link shSpecial Special
Bram Moolenaard2855f52018-07-31 22:23:58 +0200852 hi def link shSpecialDQ Special
853 hi def link shSpecialSQ Special
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100854 hi def link shSpecialNoZS shSpecial
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200855 hi def link shStatement Statement
856 hi def link shString String
857 hi def link shTodo Todo
858 hi def link shAlias Identifier
859 hi def link shHereDoc01 shRedir
860 hi def link shHereDoc02 shRedir
861 hi def link shHereDoc03 shRedir
862 hi def link shHereDoc04 shRedir
863 hi def link shHereDoc05 shRedir
864 hi def link shHereDoc06 shRedir
865 hi def link shHereDoc07 shRedir
866 hi def link shHereDoc08 shRedir
867 hi def link shHereDoc09 shRedir
868 hi def link shHereDoc10 shRedir
869 hi def link shHereDoc11 shRedir
870 hi def link shHereDoc12 shRedir
871 hi def link shHereDoc13 shRedir
872 hi def link shHereDoc14 shRedir
873 hi def link shHereDoc15 shRedir
Bram Moolenaar23515b42020-11-29 14:36:24 +0100874 hi def link shHereDoc16 shRedir
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200875endif
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100876
877" Delete shell folding commands {{{1
878" =============================
879delc ShFoldFunctions
880delc ShFoldHereDoc
881delc ShFoldIfDoFor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882
Aliaksei Budavei48fa3192024-12-30 10:23:50 +0100883" Delete the bracket expression function {{{1
884" ======================================
885delfun s:GenerateBracketExpressionItems
886
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000887" Set Current Syntax: {{{1
888" ===================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889if exists("b:is_bash")
890 let b:current_syntax = "bash"
891elseif exists("b:is_kornshell")
892 let b:current_syntax = "ksh"
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200893elseif exists("b:is_posix")
894 let b:current_syntax = "posix"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895else
896 let b:current_syntax = "sh"
897endif
898
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000899" vim: ts=16 fdm=marker