blob: 48a0024b00f1ea925766a795a8db2e44149d1134 [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 Moolenaar23515b42020-11-29 14:36:24 +01005" Last Change: Nov 24, 2020
6" Version: 196
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 Moolenaard960d762011-09-21 19:22:10 +020016" trying to answer the question: which shell is /bin/sh, really?
Bram Moolenaar97d62492012-11-15 21:28:22 +010017" If the user has not specified any of g:is_kornshell, g:is_bash, g:is_posix, g:is_sh, then guess.
Bram Moolenaar91c49372016-05-08 09:50:29 +020018if getline(1) =~ '\<ksh$'
19 let b:is_kornshell = 1
20elseif getline(1) =~ '\<bash$'
21 let b:is_bash = 1
22elseif getline(1) =~ '\<dash$'
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020023 let b:is_dash = 1
24elseif !exists("g:is_kornshell") && !exists("g:is_bash") && !exists("g:is_posix") && !exists("g:is_sh") && !exists("g:is_dash")
Bram Moolenaarbc488a72013-07-05 21:01:22 +020025 let s:shell = ""
Bram Moolenaard960d762011-09-21 19:22:10 +020026 if executable("/bin/sh")
Bram Moolenaarbc488a72013-07-05 21:01:22 +020027 let s:shell = resolve("/bin/sh")
Bram Moolenaard960d762011-09-21 19:22:10 +020028 elseif executable("/usr/bin/sh")
Bram Moolenaarbc488a72013-07-05 21:01:22 +020029 let s:shell = resolve("/usr/bin/sh")
Bram Moolenaard960d762011-09-21 19:22:10 +020030 endif
Bram Moolenaar91c49372016-05-08 09:50:29 +020031 if s:shell =~ 'ksh$'
32 let b:is_kornshell= 1
33 elseif s:shell =~ 'bash$'
34 let b:is_bash = 1
Bram Moolenaarbc488a72013-07-05 21:01:22 +020035 elseif s:shell =~ 'dash$'
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020036 let b:is_dash = 1
Bram Moolenaarbc488a72013-07-05 21:01:22 +020037 endif
38 unlet s:shell
Bram Moolenaard960d762011-09-21 19:22:10 +020039endif
40
Bram Moolenaard4755bb2004-09-02 19:12:26 +000041" handling /bin/sh with is_kornshell/is_sh {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +000042" b:is_sh is set when "#! /bin/sh" is found;
43" However, it often is just a masquerade by bash (typically Linux)
44" or kornshell (typically workstations with Posix "sh").
Bram Moolenaard960d762011-09-21 19:22:10 +020045" So, when the user sets "g:is_bash", "g:is_kornshell",
46" or "g:is_posix", a b:is_sh is converted into b:is_bash/b:is_kornshell,
Bram Moolenaar071d4272004-06-13 20:20:40 +000047" respectively.
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020048if !exists("b:is_kornshell") && !exists("b:is_bash") && !exists("b:is_dash")
Bram Moolenaar7fc904b2006-04-13 20:37:35 +000049 if exists("g:is_posix") && !exists("g:is_kornshell")
50 let g:is_kornshell= g:is_posix
51 endif
52 if exists("g:is_kornshell")
Bram Moolenaar071d4272004-06-13 20:20:40 +000053 let b:is_kornshell= 1
54 if exists("b:is_sh")
55 unlet b:is_sh
56 endif
Bram Moolenaar7fc904b2006-04-13 20:37:35 +000057 elseif exists("g:is_bash")
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 let b:is_bash= 1
59 if exists("b:is_sh")
60 unlet b:is_sh
61 endif
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020062 elseif exists("g:is_dash")
63 let b:is_dash= 1
64 if exists("b:is_sh")
65 unlet b:is_sh
66 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000067 else
68 let b:is_sh= 1
69 endif
70endif
71
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020072" if b:is_dash, set b:is_posix too
73if exists("b:is_dash")
74 let b:is_posix= 1
75endif
76
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000077" set up default g:sh_fold_enabled {{{1
Bram Moolenaarb4ff5182015-11-10 21:15:48 +010078" ================================
Bram Moolenaar071d4272004-06-13 20:20:40 +000079if !exists("g:sh_fold_enabled")
80 let g:sh_fold_enabled= 0
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000081elseif g:sh_fold_enabled != 0 && !has("folding")
82 let g:sh_fold_enabled= 0
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000083 echomsg "Ignoring g:sh_fold_enabled=".g:sh_fold_enabled."; need to re-compile vim for +fold support"
84endif
Bram Moolenaarc236c162008-07-13 17:41:49 +000085if !exists("s:sh_fold_functions")
Bram Moolenaar97d62492012-11-15 21:28:22 +010086 let s:sh_fold_functions= and(g:sh_fold_enabled,1)
Bram Moolenaarc236c162008-07-13 17:41:49 +000087endif
88if !exists("s:sh_fold_heredoc")
Bram Moolenaar97d62492012-11-15 21:28:22 +010089 let s:sh_fold_heredoc = and(g:sh_fold_enabled,2)
Bram Moolenaarc236c162008-07-13 17:41:49 +000090endif
91if !exists("s:sh_fold_ifdofor")
Bram Moolenaar97d62492012-11-15 21:28:22 +010092 let s:sh_fold_ifdofor = and(g:sh_fold_enabled,4)
Bram Moolenaarc236c162008-07-13 17:41:49 +000093endif
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000094if g:sh_fold_enabled && &fdm == "manual"
Bram Moolenaar97d62492012-11-15 21:28:22 +010095 " Given that the user provided g:sh_fold_enabled
96 " AND g:sh_fold_enabled is manual (usual default)
97 " implies a desire for syntax-based folding
98 setl fdm=syntax
Bram Moolenaar071d4272004-06-13 20:20:40 +000099endif
100
Bram Moolenaare0fa3742016-02-20 15:47:01 +0100101" set up the syntax-highlighting iskeyword
Bram Moolenaar723dd942019-04-04 13:11:03 +0200102if (v:version == 704 && has("patch-7.4.1142")) || v:version > 704
Bram Moolenaar91c49372016-05-08 09:50:29 +0200103 if exists("b:is_bash")
104 exe "syn iskeyword ".&iskeyword.",-,:"
105 else
106 exe "syn iskeyword ".&iskeyword.",-"
107 endif
Bram Moolenaare0fa3742016-02-20 15:47:01 +0100108endif
109
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100110" Set up folding commands for shell {{{1
111" =================================
112if s:sh_fold_functions
113 com! -nargs=* ShFoldFunctions <args> fold
114else
115 com! -nargs=* ShFoldFunctions <args>
116endif
117if s:sh_fold_heredoc
118 com! -nargs=* ShFoldHereDoc <args> fold
119else
120 com! -nargs=* ShFoldHereDoc <args>
121endif
122if s:sh_fold_ifdofor
123 com! -nargs=* ShFoldIfDoFor <args> fold
124else
125 com! -nargs=* ShFoldIfDoFor <args>
126endif
127
Bram Moolenaarcd71fa32005-03-11 22:46:48 +0000128" sh syntax is case sensitive {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129syn case match
130
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000131" Clusters: contains=@... clusters {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132"==================================
Bram Moolenaar5c736222010-01-06 20:54:52 +0100133syn cluster shErrorList contains=shDoError,shIfError,shInError,shCaseError,shEsacError,shCurlyError,shParenError,shTestError,shOK
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200134if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000135 syn cluster ErrorList add=shDTestError
136endif
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100137syn cluster shArithParenList contains=shArithmetic,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 +0000138syn cluster shArithList contains=@shArithParenList,shParenError
Bram Moolenaard2855f52018-07-31 22:23:58 +0200139syn cluster shCaseEsacList contains=shCaseStart,shCaseLabel,shCase,shCaseBar,shCaseIn,shComment,shDeref,shDerefSimple,shCaseCommandSub,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote,shCtrlSeq,@shErrorList,shStringSpecial,shCaseRange
Bram Moolenaar23515b42020-11-29 14:36:24 +0100140syn cluster shCaseList contains=@shCommandSubList,shCaseEsac,shColon,shCommandSub,shCommandSubBQ,shComment,shDo,shEcho,shExpr,shFor,shHereDoc,shIf,shHereString,shRedir,shSetList,shSource,shStatement,shVariable,shCtrlSeq
141if exists("b:is_kornshell") || exists("b:is_bash")
142 syn cluster shCaseList add=shForPP
143endif
Bram Moolenaard2855f52018-07-31 22:23:58 +0200144syn 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 +0000145syn cluster shCurlyList contains=shNumber,shComma,shDeref,shDerefSimple,shDerefSpecial
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100146" COMBAK: removing shEscape fromshDblQuoteList fails ksh04:43
147syn cluster shDblQuoteList contains=shArithmetic,shCommandSub,shCommandSubBQ,shDeref,shDerefSimple,shPosnParm,shCtrlSeq,shSpecial,shSpecialDQ
Bram Moolenaaracb4f222016-01-10 15:59:26 +0100148syn cluster shDerefList contains=shDeref,shDerefSimple,shDerefVar,shDerefSpecial,shDerefWordError,shDerefPSR,shDerefPPS
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200149syn cluster shDerefVarList contains=shDerefOffset,shDerefOp,shDerefVarArray,shDerefOpError
Bram Moolenaard2855f52018-07-31 22:23:58 +0200150syn cluster shEchoList contains=shArithmetic,shCommandSub,shCommandSubBQ,shDeref,shDerefSimple,shEscape,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shCtrlSeq,shEchoQuote
Bram Moolenaare90ee312010-08-05 22:08:47 +0200151syn cluster shExprList1 contains=shCharClass,shNumber,shOperator,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shExpr,shDblBrace,shDeref,shDerefSimple,shCtrlSeq
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000152syn cluster shExprList2 contains=@shExprList1,@shCaseList,shTest
Bram Moolenaard2855f52018-07-31 22:23:58 +0200153syn 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 +0000154if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaar23515b42020-11-29 14:36:24 +0100155 syn cluster shFunctionList add=shRepeat,shDblBrace,shDblParen,shForPP
Bram Moolenaar7263a772007-05-10 17:35:54 +0000156endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157syn cluster shHereBeginList contains=@shCommandSubList
158syn cluster shHereList contains=shBeginHere,shHerePayload
159syn cluster shHereListDQ contains=shBeginHere,@shDblQuoteList,shHerePayload
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100160syn cluster shIdList contains=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 +0200161syn cluster shIfList contains=@shLoopList,shDblBrace,shDblParen,shFunctionKey,shFunctionOne,shFunctionTwo
Bram Moolenaar23515b42020-11-29 14:36:24 +0100162syn cluster shLoopList contains=@shCaseList,@shErrorList,shCaseEsac,shConditional,shDblBrace,shExpr,shFor,shIf,shOption,shSet,shTest,shTestOpr,shTouch
163if exists("b:is_kornshell") || exists("b:is_bash")
164 syn cluster shLoopoList add=shForPP
165endif
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100166syn 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 Moolenaar91c49372016-05-08 09:50:29 +0200167syn cluster shPPSRightList contains=shComment,shDeref,shDerefSimple,shEscape,shPosnParm
Bram Moolenaard2855f52018-07-31 22:23:58 +0200168syn 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 +0100169syn 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 +0100170syn cluster shNoZSList contains=shSpecialNoZS
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200171syn cluster shForList contains=shTestOpr,shNumber,shDerefSimple,shDeref,shCommandSub,shCommandSubBQ,shArithmetic
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100172
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000173" Echo: {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174" ====
175" This one is needed INSIDE a CommandSub, so that `echo bla` be correct
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100176syn 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
177syn 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 Moolenaar5c736222010-01-06 20:54:52 +0100178syn match shEchoQuote contained '\%(\\\\\)*\\["`'()]'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179
Bram Moolenaarc236c162008-07-13 17:41:49 +0000180" This must be after the strings, so that ... \" will be correct
Bram Moolenaare90ee312010-08-05 22:08:47 +0200181syn 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 +0000182
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000183" Alias: {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184" =====
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200185if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 syn match shStatement "\<alias\>"
Bram Moolenaard960d762011-09-21 19:22:10 +0200187 syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+\)\@=" skip="\\$" end="\>\|`"
188 syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+=\)\@=" skip="\\$" end="="
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100189
190 " Touch: {{{1
191 " =====
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200192 syn match shTouch '\<touch\>[^;#]*' skipwhite nextgroup=shComment contains=shTouchCmd,shDoubleQuote,shSingleQuote,shDeref,shDerefSimple
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100193 syn match shTouchCmd '\<touch\>' contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194endif
195
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000196" Error Codes: {{{1
197" ============
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100198if !exists("g:sh_no_error")
Bram Moolenaare2719092015-01-10 15:09:25 +0100199 syn match shDoError "\<done\>"
200 syn match shIfError "\<fi\>"
201 syn match shInError "\<in\>"
202 syn match shCaseError ";;"
203 syn match shEsacError "\<esac\>"
204 syn match shCurlyError "}"
205 syn match shParenError ")"
206 syn match shOK '\.\(done\|fi\|in\|esac\)'
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200207 if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaare2719092015-01-10 15:09:25 +0100208 syn match shDTestError "]]"
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100209 endif
Bram Moolenaare2719092015-01-10 15:09:25 +0100210 syn match shTestError "]"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212
Bram Moolenaarc236c162008-07-13 17:41:49 +0000213" Options: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000214" ====================
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200215syn match shOption "\s\zs[-+][-_a-zA-Z#@]\+"
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100216syn match shOption "\s\zs--[^ \t$=`'"|);]\+"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217
Bram Moolenaar7263a772007-05-10 17:35:54 +0000218" File Redirection Highlighted As Operators: {{{1
219"===========================================
220syn match shRedir "\d\=>\(&[-0-9]\)\="
221syn match shRedir "\d\=>>-\="
222syn match shRedir "\d\=<\(&[-0-9]\)\="
223syn match shRedir "\d<<-\="
224
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000225" Operators: {{{1
226" ==========
Bram Moolenaar7263a772007-05-10 17:35:54 +0000227syn match shOperator "<<\|>>" contained
Bram Moolenaarc236c162008-07-13 17:41:49 +0000228syn match shOperator "[!&;|]" contained
229syn match shOperator "\[[[^:]\|\]]" contained
Bram Moolenaar541f92d2015-06-19 13:27:23 +0200230syn match shOperator "[-=/*+%]\==" skipwhite nextgroup=shPattern
Bram Moolenaare90ee312010-08-05 22:08:47 +0200231syn match shPattern "\<\S\+\())\)\@=" contained contains=shExSingleQuote,shSingleQuote,shExDoubleQuote,shDoubleQuote,shDeref
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000233" Subshells: {{{1
234" ==========
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200235syn region shExpr transparent matchgroup=shExprRegion start="{" end="}" contains=@shExprList2 nextgroup=shSpecialNxt
236syn region shSubSh transparent matchgroup=shSubShRegion start="[^(]\zs(" end=")" contains=@shSubShList nextgroup=shSpecialNxt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000238" Tests: {{{1
239"=======
Bram Moolenaar00a927d2010-05-14 23:24:24 +0200240syn region shExpr matchgroup=shRange start="\[" skip=+\\\\\|\\$\|\[+ end="\]" contains=@shTestList,shSpecial
Bram Moolenaar5c736222010-01-06 20:54:52 +0100241syn 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 +0100242syn region shNoQuote start='\S' skip='\%(\\\\\)*\\.' end='\ze\s' end="\ze['"]" contained contains=shDerefSimple,shDeref
Bram Moolenaar91c49372016-05-08 09:50:29 +0200243syn match shAstQuote contained '\*\ze"' nextgroup=shString
Bram Moolenaar541f92d2015-06-19 13:27:23 +0200244syn match shTestOpr contained '[^-+/%]\zs=' skipwhite nextgroup=shTestDoubleQuote,shTestSingleQuote,shTestPattern
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100245syn match shTestOpr contained "<=\|>=\|!=\|==\|=\~\|-.\>\|-\(nt\|ot\|ef\|eq\|ne\|lt\|le\|gt\|ge\)\>\|[!<>]"
Bram Moolenaar9964e462007-05-05 17:54:07 +0000246syn match shTestPattern contained '\w\+'
Bram Moolenaar91c49372016-05-08 09:50:29 +0200247syn region shTestDoubleQuote contained start='\%(\%(\\\\\)*\\\)\@<!"' skip=+\\\\\|\\"+ end='"' contains=shDeref,shDerefSimple,shDerefSpecial
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100248syn match shTestSingleQuote contained '\\.' nextgroup=shTestSingleQuote
Bram Moolenaar9964e462007-05-05 17:54:07 +0000249syn match shTestSingleQuote contained "'[^']*'"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200251 syn region shDblBrace matchgroup=Delimiter start="\[\[" skip=+\%(\\\\\)*\\$+ end="\]\]" contains=@shTestList,shAstQuote,shNoQuote,shComment
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100252 syn region shDblParen matchgroup=Delimiter start="((" skip=+\%(\\\\\)*\\$+ end="))" contains=@shTestList,shComment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253endif
254
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000255" Character Class In Range: {{{1
256" =========================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257syn match shCharClass contained "\[:\(backspace\|escape\|return\|xdigit\|alnum\|alpha\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|tab\):\]"
258
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000259" Loops: do, if, while, until {{{1
260" ======
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100261ShFoldIfDoFor syn region shDo transparent matchgroup=shConditional start="\<do\>" matchgroup=shConditional end="\<done\>" contains=@shLoopList
262ShFoldIfDoFor syn region shIf transparent matchgroup=shConditional start="\<if\_s" matchgroup=shConditional skip=+-fi\>+ end="\<;\_s*then\>" end="\<fi\>" contains=@shIfList
263ShFoldIfDoFor 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 +0100264if exists("b:is_kornshell") || exists("b:is_bash")
265 ShFoldIfDoFor syn region shForPP matchgroup=shLoop start='\<for\>\_s*((' end='))' contains=@shForList
266endif
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100267
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200268if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000269 syn cluster shCaseList add=shRepeat
270 syn cluster shFunctionList add=shRepeat
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200271 syn region shRepeat matchgroup=shLoop start="\<while\_s" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen,shDblBrace
272 syn region shRepeat matchgroup=shLoop start="\<until\_s" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen,shDblBrace
273 if !exists("b:is_posix")
274 syn region shCaseEsac matchgroup=shConditional start="\<select\s" matchgroup=shConditional end="\<in\>" end="\<do\>" contains=@shLoopList
275 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000277 syn region shRepeat matchgroup=shLoop start="\<while\_s" end="\<do\>"me=e-2 contains=@shLoopList
278 syn region shRepeat matchgroup=shLoop start="\<until\_s" end="\<do\>"me=e-2 contains=@shLoopList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279endif
Bram Moolenaar572cb562005-08-05 21:35:02 +0000280syn region shCurlyIn contained matchgroup=Delimiter start="{" end="}" contains=@shCurlyList
281syn match shComma contained ","
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000283" Case: case...esac {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284" ====
Bram Moolenaard2855f52018-07-31 22:23:58 +0200285syn match shCaseBar contained skipwhite "\(^\|[^\\]\)\(\\\\\)*\zs|" nextgroup=shCase,shCaseStart,shCaseBar,shComment,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote
286syn match shCaseStart contained skipwhite skipnl "(" nextgroup=shCase,shCaseBar
287syn match shCaseLabel contained skipwhite "\%(\\.\|[-a-zA-Z0-9_*.]\)\+" contains=shCharClass
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100288if exists("b:is_bash")
Bram Moolenaard2855f52018-07-31 22:23:58 +0200289 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
290else
291 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 +0100292endif
Bram Moolenaard2855f52018-07-31 22:23:58 +0200293ShFoldIfDoFor syn region shCaseEsac matchgroup=shConditional start="\<case\>" end="\<esac\>" contains=@shCaseEsacList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100294
Bram Moolenaardf177f62005-02-22 08:39:57 +0000295syn keyword shCaseIn contained skipwhite skipnl in nextgroup=shCase,shCaseStart,shCaseBar,shComment,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote
296if exists("b:is_bash")
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200297 syn region shCaseExSingleQuote matchgroup=shQuote start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial,shSpecial skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100298elseif !exists("g:sh_no_error")
Bram Moolenaardf177f62005-02-22 08:39:57 +0000299 syn region shCaseExSingleQuote matchgroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
300endif
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200301syn region shCaseSingleQuote matchgroup=shQuote start=+'+ end=+'+ contains=shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
302syn region shCaseDoubleQuote matchgroup=shQuote start=+"+ skip=+\\\\\|\\.+ end=+"+ contains=@shDblQuoteList,shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303syn region shCaseCommandSub start=+`+ skip=+\\\\\|\\.+ end=+`+ contains=@shCommandSubList skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar97d62492012-11-15 21:28:22 +0100304if exists("b:is_bash")
305 syn region shCaseRange matchgroup=Delimiter start=+\[+ skip=+\\\\+ end=+\]+ contained contains=shCharClass
306 syn match shCharClass '\[:\%(alnum\|alpha\|ascii\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|word\|or\|xdigit\):\]' contained
307else
308 syn region shCaseRange matchgroup=Delimiter start=+\[+ skip=+\\\\+ end=+\]+ contained
309endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000310" Misc: {{{1
311"======
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312syn match shWrapLineOperator "\\$"
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200313syn region shCommandSubBQ start="`" skip="\\\\\|\\." end="`" contains=shBQComment,@shCommandSubList
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100314"COMBAK: see ksh13:50
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100315"syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.' nextgroup=shSingleQuote,shDoubleQuote,shComment
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100316"COMBAK: see sh11:27
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100317syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.' nextgroup=shComment
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100318"COMBAK: see ksh13:53
319"syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000321" $() and $(()): {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322" $(..) is not supported by sh (Bourne shell). However, apparently
323" some systems (HP?) have as their /bin/sh a (link to) Korn shell
324" (ie. Posix compliant shell). /bin/ksh should work for those
325" systems too, however, so the following syntax will flag $(..) as
326" an Error under /bin/sh. By consensus of vimdev'ers!
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100327if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328 syn region shCommandSub matchgroup=shCmdSubRegion start="\$(" skip='\\\\\|\\.' end=")" contains=@shCommandSubList
Bram Moolenaarc236c162008-07-13 17:41:49 +0000329 syn region shArithmetic matchgroup=shArithRegion start="\$((" skip='\\\\\|\\.' end="))" contains=@shArithList
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200330 syn region shArithmetic matchgroup=shArithRegion start="\$\[" skip='\\\\\|\\.' end="\]" contains=@shArithList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 syn match shSkipInitWS contained "^\s\+"
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100332elseif !exists("g:sh_no_error")
Bram Moolenaardf177f62005-02-22 08:39:57 +0000333 syn region shCommandSub matchgroup=Error start="\$(" end=")" contains=@shCommandSubList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334endif
Bram Moolenaare2719092015-01-10 15:09:25 +0100335syn region shCmdParenRegion matchgroup=shCmdSubRegion start="(\ze[^(]" skip='\\\\\|\\.' end=")" contains=@shCommandSubList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336
337if exists("b:is_bash")
338 syn cluster shCommandSubList add=bashSpecialVariables,bashStatement
339 syn cluster shCaseList add=bashAdminStatement,bashStatement
Bram Moolenaard960d762011-09-21 19:22:10 +0200340 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 Moolenaar690afe12017-01-28 18:34:47 +0100341 syn keyword bashStatement chmod clear complete du egrep expr fgrep find gnufind gnugrep grep less ls mkdir mv rm rmdir rpm sed sleep sort strip tail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 syn keyword bashAdminStatement daemon killall killproc nice reload restart start status stop
Bram Moolenaar97d62492012-11-15 21:28:22 +0100343 syn keyword bashStatement command compgen
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344endif
345
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200346if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 syn cluster shCommandSubList add=kshSpecialVariables,kshStatement
348 syn cluster shCaseList add=kshStatement
349 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 Moolenaarb4ff5182015-11-10 21:15:48 +0100350 syn keyword kshStatement cat chmod clear cp du egrep expr fgrep find grep killall less ls mkdir mv nice printenv rm rmdir sed sort strip stty tail tput
Bram Moolenaar97d62492012-11-15 21:28:22 +0100351 syn keyword kshStatement command setgroups setsenv
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352endif
353
354syn match shSource "^\.\s"
355syn match shSource "\s\.\s"
Bram Moolenaar5c736222010-01-06 20:54:52 +0100356"syn region shColon start="^\s*:" end="$" end="\s#"me=e-2 contains=@shColonList
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100357"syn region shColon start="^\s*\zs:" end="$" end="\s#"me=e-2
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200358if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200359 syn match shColon '^\s*\zs:'
360endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000362" String And Character Constants: {{{1
363"================================
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200364syn match shNumber "\<\d\+\>#\="
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200365syn match shNumber "\<-\=\.\=\d\+\>#\="
Bram Moolenaar802a0d92016-06-26 16:17:58 +0200366syn match shCtrlSeq "\\\d\d\d\|\\[abcfnrtv0]" contained
Bram Moolenaardf177f62005-02-22 08:39:57 +0000367if exists("b:is_bash")
Bram Moolenaar802a0d92016-06-26 16:17:58 +0200368 syn match shSpecial "[^\\]\(\\\\\)*\zs\\\o\o\o\|\\x\x\x\|\\c[^"]\|\\[abefnrtv]" contained
369 syn match shSpecial "^\(\\\\\)*\zs\\\o\o\o\|\\x\x\x\|\\c[^"]\|\\[abefnrtv]" contained
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200370 syn region shExSingleQuote matchgroup=shQuote start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial,shSpecial nextgroup=shSpecialNxt
371 syn region shExDoubleQuote matchgroup=shQuote start=+\$"+ skip=+\\\\\|\\.\|\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,shSpecial nextgroup=shSpecialNxt
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100372elseif !exists("g:sh_no_error")
Bram Moolenaar9964e462007-05-05 17:54:07 +0000373 syn region shExSingleQuote matchGroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial
Bram Moolenaare90ee312010-08-05 22:08:47 +0200374 syn region shExDoubleQuote matchGroup=Error start=+\$"+ skip=+\\\\\|\\.+ end=+"+ contains=shStringSpecial
Bram Moolenaardf177f62005-02-22 08:39:57 +0000375endif
Bram Moolenaard2855f52018-07-31 22:23:58 +0200376syn region shSingleQuote matchgroup=shQuote start=+'+ end=+'+ contains=@Spell nextgroup=shSpecialStart,shSpecialSQ
Bram Moolenaar47e13952020-05-12 22:49:12 +0200377syn region shDoubleQuote matchgroup=shQuote start=+\%(\%(\\\\\)*\\\)\@<!"+ skip=+\\.+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200378syn region shDoubleQuote matchgroup=shQuote start=+"+ matchgroup=shSpecial skip=+\\"+ matchgroup=shQuote end=+"+ contained contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
Bram Moolenaar802a0d92016-06-26 16:17:58 +0200379syn match shStringSpecial "[^[:print:] \t]" contained
Bram Moolenaard2855f52018-07-31 22:23:58 +0200380syn match shStringSpecial "[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]" nextgroup=shComment
381syn match shSpecialSQ "[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]" contained nextgroup=shBkslshSnglQuote,@shNoZSList
382syn match shSpecialDQ "[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]" contained nextgroup=shBkslshDblQuote,@shNoZSList
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200383syn match shSpecialStart "\%(\\\\\)*\\[\\"'`$()#]" contained nextgroup=shBkslshSnglQuote,shBkslshDblQuote,@shNoZSList
Bram Moolenaar60cce2f2015-10-13 23:21:27 +0200384syn match shSpecial "^\%(\\\\\)*\\[\\"'`$()#]"
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100385syn match shSpecialNoZS contained "\%(\\\\\)*\\[\\"'`$()#]"
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200386syn match shSpecialNxt contained "\\[\\"'`$()#]"
Bram Moolenaar47e13952020-05-12 22:49:12 +0200387"syn region shBkslshSnglQuote contained matchgroup=shQuote start=+'+ end=+'+ contains=@Spell nextgroup=shSpecialStart
388"syn region shBkslshDblQuote contained matchgroup=shQuote start=+"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000390" Comments: {{{1
391"==========
Bram Moolenaar5c736222010-01-06 20:54:52 +0100392syn cluster shCommentGroup contains=shTodo,@Spell
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200393if exists("b:is_bash")
394 syn match shTodo contained "\<\%(COMBAK\|FIXME\|TODO\|XXX\)\ze:\=\>"
395else
396 syn keyword shTodo contained COMBAK FIXME TODO XXX
397endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100398syn match shComment "^\s*\zs#.*$" contains=@shCommentGroup
399syn match shComment "\s\zs#.*$" contains=@shCommentGroup
Bram Moolenaar97d62492012-11-15 21:28:22 +0100400syn match shComment contained "#.*$" contains=@shCommentGroup
Bram Moolenaar5c736222010-01-06 20:54:52 +0100401syn match shQuickComment contained "#.*$"
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200402syn match shBQComment contained "#.\{-}\ze`" contains=@shCommentGroup
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000404" Here Documents: {{{1
405" =========================================
Bram Moolenaar23515b42020-11-29 14:36:24 +0100406ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc01 start="<<\s*\z([^ \t|>]\+\)" matchgroup=shHereDoc01 end="^\z1\s*$" contains=@shDblQuoteList
407ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc02 start="<<-\s*\z([^ \t|>]\+\)" matchgroup=shHereDoc02 end="^\s*\z1\s*$" contains=@shDblQuoteList
408ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc03 start="<<\s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc03 end="^\z1\s*$"
409ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc04 start="<<-\s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc04 end="^\s*\z1\s*$"
Bram Moolenaard2855f52018-07-31 22:23:58 +0200410ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc05 start="<<\s*'\z([^']\+\)'" matchgroup=shHereDoc05 end="^\z1\s*$"
Bram Moolenaar23515b42020-11-29 14:36:24 +0100411ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc06 start="<<-\s*'\z([^']\+\)'" matchgroup=shHereDoc06 end="^\s*\z1\s*$"
412ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc07 start="<<\s*\"\z([^"]\+\)\"" matchgroup=shHereDoc07 end="^\z1\s*$"
413ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc08 start="<<-\s*\"\z([^"]\+\)\"" matchgroup=shHereDoc08 end="^\s*\z1\s*$"
414ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc09 start="<<\s*\\\_$\_s*\z([^ \t|>]\+\)" matchgroup=shHereDoc09 end="^\z1\s*$" contains=@shDblQuoteList
415ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc10 start="<<-\s*\\\_$\_s*\z([^ \t|>]\+\)" matchgroup=shHereDoc10 end="^\s*\z1\s*$" contains=@shDblQuoteList
416ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc11 start="<<\s*\\\_$\_s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc11 end="^\z1\s*$"
417ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc12 start="<<-\s*\\\_$\_s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc12 end="^\s*\z1\s*$"
418ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc13 start="<<\s*\\\_$\_s*'\z([^']\+\)'" matchgroup=shHereDoc13 end="^\z1\s*$"
419ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc14 start="<<-\s*\\\_$\_s*'\z([^']\+\)'" matchgroup=shHereDoc14 end="^\s*\z1\s*$"
420ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc15 start="<<\s*\\\_$\_s*\"\z([^"]\+\)\"" matchgroup=shHereDoc15 end="^\z1\s*$"
421ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc16 start="<<-\s*\\\_$\_s*\"\z([^"]\+\)\"" matchgroup=shHereDoc16 end="^\s*\z1\s*$"
422
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000424" Here Strings: {{{1
425" =============
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200426" available for: bash; ksh (really should be ksh93 only) but not if its a posix
Bram Moolenaar690afe12017-01-28 18:34:47 +0100427if exists("b:is_bash") || (exists("b:is_kornshell") && !exists("b:is_posix"))
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200428 syn match shHereString "<<<" skipwhite nextgroup=shCmdParenRegion
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000429endif
430
431" Identifiers: {{{1
432"=============
Bram Moolenaarc236c162008-07-13 17:41:49 +0000433syn match shSetOption "\s\zs[-+][a-zA-Z0-9]\+\>" contained
Bram Moolenaar23515b42020-11-29 14:36:24 +0100434syn match shVariable "\<\h\w*\ze=" nextgroup=shVarAssign
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100435syn match shVarAssign "=" contained nextgroup=shCmdParenRegion,shPattern,shDeref,shDerefSimple,shDoubleQuote,shExDoubleQuote,shSingleQuote,shExSingleQuote,shVar
436syn match shVar contained "\h\w*"
Bram Moolenaarbc488a72013-07-05 21:01:22 +0200437syn region shAtExpr contained start="@(" end=")" contains=@shIdList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438if exists("b:is_bash")
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100439 syn match shSet "^\s*set\ze\s\+$"
440 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
441 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 +0200442elseif exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100443 syn match shSet "^\s*set\ze\s\+$"
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200444 if exists("b:is_dash")
445 syn region shSetList oneline matchgroup=shSet start="\<\%(local\)\>\ze[/]\@!" end="$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]" contains=@shIdList
446 endif
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100447 syn region shSetList oneline matchgroup=shSet start="\<\(export\)\>\ze[/]\@!" end="$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]" contains=@shIdList
448 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 +0000449else
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100450 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 +0000451endif
452
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000453" Functions: {{{1
Bram Moolenaar690afe12017-01-28 18:34:47 +0100454if !exists("b:is_posix")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000455 syn keyword shFunctionKey function skipwhite skipnl nextgroup=shFunctionTwo
456endif
457
458if exists("b:is_bash")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200459 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
460 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
461 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
462 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 +0000463else
Bram Moolenaar91c49372016-05-08 09:50:29 +0200464 ShFoldFunctions syn region shFunctionOne matchgroup=shFunction start="^\s*\h\w*\s*()\_s*{" end="}" contains=@shFunctionList skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
465 ShFoldFunctions syn region shFunctionTwo matchgroup=shFunction start="\%(do\)\@!\&\<\h\w*\>\s*\%(()\)\=\_s*{" end="}" contains=shFunctionKey,@shFunctionList contained skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
466 ShFoldFunctions syn region shFunctionThree matchgroup=shFunction start="^\s*\h\w*\s*()\_s*(" end=")" contains=@shFunctionList skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
467 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 +0000468endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000470" Parameter Dereferencing: {{{1
471" ========================
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100472if !exists("g:sh_no_error")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200473 syn match shDerefWordError "[^}$[~]" contained
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100474endif
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100475syn match shDerefSimple "\$\%(\h\w*\|\d\)" nextgroup=@shNoZSList
Bram Moolenaar47e13952020-05-12 22:49:12 +0200476syn region shDeref matchgroup=PreProc start="\${" end="}" contains=@shDerefList,shDerefVarArray nextgroup=shSpecialStart
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100477syn match shDerefSimple "\$[-#*@!?]" nextgroup=@shNoZSList
478syn match shDerefSimple "\$\$" nextgroup=@shNoZSList
Bram Moolenaar47e13952020-05-12 22:49:12 +0200479syn match shDerefSimple "\${\d}" nextgroup=@shNoZSList nextgroup=shSpecialStart
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200480if exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaar47e13952020-05-12 22:49:12 +0200481 syn region shDeref matchgroup=PreProc start="\${##\=" end="}" contains=@shDerefList nextgroup=@shSpecialNoZS,shSpecialStart
482 syn region shDeref matchgroup=PreProc start="\${\$\$" end="}" contains=@shDerefList nextgroup=@shSpecialNoZS,shSpecialStart
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483endif
484
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100485" ksh: ${!var[*]} array index list syntax: {{{1
486" ========================================
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200487if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100488 syn region shDeref matchgroup=PreProc start="\${!" end="}" contains=@shDerefVarArray
489endif
490
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000491" bash: ${!prefix*} and ${#parameter}: {{{1
492" ====================================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493if exists("b:is_bash")
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200494 syn region shDeref matchgroup=PreProc start="\${!" end="\*\=}" contains=@shDerefList,shDerefOffset
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200495 syn match shDerefVar contained "{\@<=!\h\w*" nextgroup=@shDerefVarList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496endif
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100497if exists("b:is_kornshell")
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200498 syn match shDerefVar contained "{\@<=!\h\w*[[:alnum:]_.]*" nextgroup=@shDerefVarList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100499endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200501syn match shDerefSpecial contained "{\@<=[-*@?0]" nextgroup=shDerefOp,shDerefOffset,shDerefOpError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502syn match shDerefSpecial contained "\({[#!]\)\@<=[[:alnum:]*@_]\+" nextgroup=@shDerefVarList,shDerefOp
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200503syn match shDerefVar contained "{\@<=\h\w*" nextgroup=@shDerefVarList
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200504syn match shDerefVar contained '\d' nextgroup=@shDerefVarList
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200505if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200506 syn match shDerefVar contained "{\@<=\h\w*[[:alnum:]_.]*" nextgroup=@shDerefVarList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100507endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000509" sh ksh bash : ${var[... ]...} array reference: {{{1
Bram Moolenaare2719092015-01-10 15:09:25 +0100510syn region shDerefVarArray contained matchgroup=shDeref start="\[" end="]" contains=@shCommandSubList nextgroup=shDerefOp,shDerefOpError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000512" Special ${parameter OPERATOR word} handling: {{{1
Bram Moolenaare2719092015-01-10 15:09:25 +0100513" sh ksh bash : ${parameter:-word} word is default value
514" sh ksh bash : ${parameter:=word} assign word as default value
515" sh ksh bash : ${parameter:?word} display word if parameter is null
516" sh ksh bash : ${parameter:+word} use word if parameter is not null, otherwise nothing
517" ksh bash : ${parameter#pattern} remove small left pattern
518" ksh bash : ${parameter##pattern} remove large left pattern
519" ksh bash : ${parameter%pattern} remove small right pattern
520" ksh bash : ${parameter%%pattern} remove large right pattern
521" bash : ${parameter^pattern} Case modification
522" bash : ${parameter^^pattern} Case modification
523" bash : ${parameter,pattern} Case modification
524" bash : ${parameter,,pattern} Case modification
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200525" bash : ${@:start:qty} display command line arguments from start to start+qty-1 (inferred)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526syn cluster shDerefPatternList contains=shDerefPattern,shDerefString
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100527if !exists("g:sh_no_error")
528 syn match shDerefOpError contained ":[[:punct:]]"
529endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530syn match shDerefOp contained ":\=[-=?]" nextgroup=@shDerefPatternList
531syn match shDerefOp contained ":\=+" nextgroup=@shDerefPatternList
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200532if exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200533 syn match shDerefOp contained "#\{1,2}" nextgroup=@shDerefPatternList
534 syn match shDerefOp contained "%\{1,2}" nextgroup=@shDerefPatternList
535 syn match shDerefPattern contained "[^{}]\+" contains=shDeref,shDerefSimple,shDerefPattern,shDerefString,shCommandSub,shDerefEscape nextgroup=shDerefPattern
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 syn region shDerefPattern contained start="{" end="}" contains=shDeref,shDerefSimple,shDerefString,shCommandSub nextgroup=shDerefPattern
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000537 syn match shDerefEscape contained '\%(\\\\\)*\\.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538endif
Bram Moolenaard960d762011-09-21 19:22:10 +0200539if exists("b:is_bash")
540 syn match shDerefOp contained "[,^]\{1,2}" nextgroup=@shDerefPatternList
541endif
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200542syn region shDerefString contained matchgroup=shDerefDelim start=+\%(\\\)\@<!'+ end=+'+ contains=shStringSpecial
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200543syn region shDerefString contained matchgroup=shDerefDelim start=+\%(\\\)\@<!"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial
Bram Moolenaarc236c162008-07-13 17:41:49 +0000544syn match shDerefString contained "\\["']" nextgroup=shDerefPattern
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200546if exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix")
547 " bash ksh posix : ${parameter:offset}
548 " bash ksh posix : ${parameter:offset:length}
549 syn region shDerefOffset contained start=':[^-=?+]' end='\ze:' end='\ze}' contains=shDeref,shDerefSimple,shDerefEscape nextgroup=shDerefLen,shDeref,shDerefSimple
550 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 +0200551 syn match shDerefLen contained ":[^}]\+" contains=shDeref,shDerefSimple,shArithmetic
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200552endif
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000553
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200554if exists("b:is_bash")
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000555 " bash : ${parameter//pattern/string}
556 " bash : ${parameter//pattern}
557 syn match shDerefPPS contained '/\{1,2}' nextgroup=shDerefPPSleft
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200558 syn region shDerefPPSleft contained start='.' skip=@\%(\\\\\)*\\/@ matchgroup=shDerefOp end='/' end='\ze}' end='"' nextgroup=shDerefPPSright contains=@shPPSLeftList
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100559 syn region shDerefPPSright contained start='.' skip=@\%(\\\\\)\+@ end='\ze}' contains=@shPPSRightList
Bram Moolenaaracb4f222016-01-10 15:59:26 +0100560
561 " bash : ${parameter/#substring/replacement}
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200562 syn match shDerefPSR contained '/#' nextgroup=shDerefPSRleft,shDoubleQuote,shSingleQuote
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100563 syn region shDerefPSRleft contained start='[^"']' skip=@\%(\\\\\)*\\/@ matchgroup=shDerefOp end='/' end='\ze}' nextgroup=shDerefPSRright
Bram Moolenaaracb4f222016-01-10 15:59:26 +0100564 syn region shDerefPSRright contained start='.' skip=@\%(\\\\\)\+@ end='\ze}'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565endif
566
Bram Moolenaarc236c162008-07-13 17:41:49 +0000567" Arithmetic Parenthesized Expressions: {{{1
Bram Moolenaarbc488a72013-07-05 21:01:22 +0200568"syn region shParen matchgroup=shArithRegion start='[^$]\zs(\%(\ze[^(]\|$\)' end=')' contains=@shArithParenList
569syn region shParen matchgroup=shArithRegion start='\$\@!(\%(\ze[^(]\|$\)' end=')' contains=@shArithParenList
Bram Moolenaarc236c162008-07-13 17:41:49 +0000570
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200571" Additional sh Keywords: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000572" ===================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573syn keyword shStatement break cd chdir continue eval exec exit kill newgrp pwd read readonly return shift test trap ulimit umask wait
574syn keyword shConditional contained elif else then
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100575if !exists("g:sh_no_error")
576 syn keyword shCondError elif else then
577endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200579" Additional ksh Keywords and Aliases: {{{1
580" ===================================
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100581if exists("b:is_kornshell") || exists("b:is_posix")
582 syn keyword shStatement bg builtin disown enum export false fg getconf getopts hist jobs let printf sleep true unalias whence
583 syn keyword shStatement typeset skipwhite nextgroup=shSetOption
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200584 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 +0100585 if exists("b:is_posix")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000586 syn keyword shStatement command
587 else
588 syn keyword shStatement time
589 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200591" Additional bash Keywords: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000592" =====================
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100593elseif exists("b:is_bash")
594 syn keyword shStatement bg builtin disown export false fg getopts jobs let printf sleep true unalias
595 syn keyword shStatement typeset nextgroup=shSetOption
596 syn keyword shStatement fc hash history source suspend times type
597 syn keyword shStatement bind builtin caller compopt declare dirs disown enable export help logout mapfile popd pushd readarray shopt source typeset
598else
599 syn keyword shStatement login newgrp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600endif
601
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000602" Synchronization: {{{1
603" ================
Bram Moolenaar03413f42016-04-12 21:07:15 +0200604if !exists("g:sh_minlines")
605 let s:sh_minlines = 200
606else
607 let s:sh_minlines= g:sh_minlines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608endif
Bram Moolenaar03413f42016-04-12 21:07:15 +0200609if !exists("g:sh_maxlines")
610 let s:sh_maxlines = 2*s:sh_minlines
611 if s:sh_maxlines < 25
612 let s:sh_maxlines= 25
613 endif
614else
615 let s:sh_maxlines= g:sh_maxlines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616endif
Bram Moolenaar03413f42016-04-12 21:07:15 +0200617exec "syn sync minlines=" . s:sh_minlines . " maxlines=" . s:sh_maxlines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618syn sync match shCaseEsacSync grouphere shCaseEsac "\<case\>"
619syn sync match shCaseEsacSync groupthere shCaseEsac "\<esac\>"
620syn sync match shDoSync grouphere shDo "\<do\>"
621syn sync match shDoSync groupthere shDo "\<done\>"
622syn sync match shForSync grouphere shFor "\<for\>"
623syn sync match shForSync groupthere shFor "\<in\>"
624syn sync match shIfSync grouphere shIf "\<if\>"
625syn sync match shIfSync groupthere shIf "\<fi\>"
626syn sync match shUntilSync grouphere shRepeat "\<until\>"
627syn sync match shWhileSync grouphere shRepeat "\<while\>"
628
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000629" Default Highlighting: {{{1
630" =====================
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200631if !exists("skip_sh_syntax_inits")
632 hi def link shArithRegion shShellVariables
633 hi def link shAstQuote shDoubleQuote
634 hi def link shAtExpr shSetList
Bram Moolenaard2855f52018-07-31 22:23:58 +0200635 hi def link shBkslshSnglQuote shSingleQuote
636 hi def link shBkslshDblQuote shDOubleQuote
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200637 hi def link shBeginHere shRedir
638 hi def link shCaseBar shConditional
639 hi def link shCaseCommandSub shCommandSub
640 hi def link shCaseDoubleQuote shDoubleQuote
641 hi def link shCaseIn shConditional
642 hi def link shQuote shOperator
643 hi def link shCaseSingleQuote shSingleQuote
644 hi def link shCaseStart shConditional
645 hi def link shCmdSubRegion shShellVariables
646 hi def link shColon shComment
647 hi def link shDerefOp shOperator
648 hi def link shDerefPOL shDerefOp
649 hi def link shDerefPPS shDerefOp
650 hi def link shDerefPSR shDerefOp
651 hi def link shDeref shShellVariables
652 hi def link shDerefDelim shOperator
653 hi def link shDerefSimple shDeref
654 hi def link shDerefSpecial shDeref
655 hi def link shDerefString shDoubleQuote
656 hi def link shDerefVar shDeref
657 hi def link shDoubleQuote shString
658 hi def link shEcho shString
659 hi def link shEchoDelim shOperator
660 hi def link shEchoQuote shString
661 hi def link shForPP shLoop
662 hi def link shFunction Function
663 hi def link shEmbeddedEcho shString
664 hi def link shEscape shCommandSub
665 hi def link shExDoubleQuote shDoubleQuote
666 hi def link shExSingleQuote shSingleQuote
667 hi def link shHereDoc shString
668 hi def link shHereString shRedir
669 hi def link shHerePayload shHereDoc
670 hi def link shLoop shStatement
671 hi def link shSpecialNxt shSpecial
672 hi def link shNoQuote shDoubleQuote
673 hi def link shOption shCommandSub
674 hi def link shPattern shString
675 hi def link shParen shArithmetic
676 hi def link shPosnParm shShellVariables
677 hi def link shQuickComment shComment
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200678 hi def link shBQComment shComment
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200679 hi def link shRange shOperator
680 hi def link shRedir shOperator
681 hi def link shSetListDelim shOperator
682 hi def link shSetOption shOption
683 hi def link shSingleQuote shString
684 hi def link shSource shOperator
685 hi def link shStringSpecial shSpecial
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200686 hi def link shSpecialStart shSpecial
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200687 hi def link shSubShRegion shOperator
688 hi def link shTestOpr shConditional
689 hi def link shTestPattern shString
690 hi def link shTestDoubleQuote shString
691 hi def link shTestSingleQuote shString
692 hi def link shTouchCmd shStatement
693 hi def link shVariable shSetList
694 hi def link shWrapLineOperator shOperator
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200696 if exists("b:is_bash")
697 hi def link bashAdminStatement shStatement
698 hi def link bashSpecialVariables shShellVariables
699 hi def link bashStatement shStatement
700 hi def link shCharClass shSpecial
Bram Moolenaard58a3bf2020-09-28 21:48:16 +0200701 hi def link shDerefOffset shDerefOp
702 hi def link shDerefLen shDerefOffset
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100703 endif
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200704 if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200705 hi def link kshSpecialVariables shShellVariables
706 hi def link kshStatement shStatement
707 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200709 if !exists("g:sh_no_error")
710 hi def link shCaseError Error
711 hi def link shCondError Error
712 hi def link shCurlyError Error
713 hi def link shDerefOpError Error
714 hi def link shDerefWordError Error
715 hi def link shDoError Error
716 hi def link shEsacError Error
717 hi def link shIfError Error
718 hi def link shInError Error
719 hi def link shParenError Error
720 hi def link shTestError Error
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200721 if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200722 hi def link shDTestError Error
723 endif
724 endif
725
726 hi def link shArithmetic Special
727 hi def link shCharClass Identifier
728 hi def link shSnglCase Statement
729 hi def link shCommandSub Special
Bram Moolenaard2855f52018-07-31 22:23:58 +0200730 hi def link shCommandSubBQ shCommandSub
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200731 hi def link shComment Comment
732 hi def link shConditional Conditional
733 hi def link shCtrlSeq Special
734 hi def link shExprRegion Delimiter
735 hi def link shFunctionKey Function
736 hi def link shFunctionName Function
737 hi def link shNumber Number
738 hi def link shOperator Operator
739 hi def link shRepeat Repeat
740 hi def link shSet Statement
741 hi def link shSetList Identifier
742 hi def link shShellVariables PreProc
743 hi def link shSpecial Special
Bram Moolenaard2855f52018-07-31 22:23:58 +0200744 hi def link shSpecialDQ Special
745 hi def link shSpecialSQ Special
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100746 hi def link shSpecialNoZS shSpecial
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200747 hi def link shStatement Statement
748 hi def link shString String
749 hi def link shTodo Todo
750 hi def link shAlias Identifier
751 hi def link shHereDoc01 shRedir
752 hi def link shHereDoc02 shRedir
753 hi def link shHereDoc03 shRedir
754 hi def link shHereDoc04 shRedir
755 hi def link shHereDoc05 shRedir
756 hi def link shHereDoc06 shRedir
757 hi def link shHereDoc07 shRedir
758 hi def link shHereDoc08 shRedir
759 hi def link shHereDoc09 shRedir
760 hi def link shHereDoc10 shRedir
761 hi def link shHereDoc11 shRedir
762 hi def link shHereDoc12 shRedir
763 hi def link shHereDoc13 shRedir
764 hi def link shHereDoc14 shRedir
765 hi def link shHereDoc15 shRedir
Bram Moolenaar23515b42020-11-29 14:36:24 +0100766 hi def link shHereDoc16 shRedir
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200767endif
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100768
769" Delete shell folding commands {{{1
770" =============================
771delc ShFoldFunctions
772delc ShFoldHereDoc
773delc ShFoldIfDoFor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000775" Set Current Syntax: {{{1
776" ===================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777if exists("b:is_bash")
778 let b:current_syntax = "bash"
779elseif exists("b:is_kornshell")
780 let b:current_syntax = "ksh"
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200781elseif exists("b:is_posix")
782 let b:current_syntax = "posix"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783else
784 let b:current_syntax = "sh"
785endif
786
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000787" vim: ts=16 fdm=marker