blob: 3a2a6e7b0e4ced343946c097ea2268d923e83de2 [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 Moolenaar47e13952020-05-12 22:49:12 +02005" Last Change: Apr 14, 2020
6" Version: 190
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 Moolenaarb4ff5182015-11-10 21:15:48 +01009" This file includes many ideas from Eric Brunet (eric.brunet@ens.fr)
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$'
23 let b:is_posix = 1
24elseif !exists("g:is_kornshell") && !exists("g:is_bash") && !exists("g:is_posix") && !exists("g:is_sh")
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 Moolenaar91c49372016-05-08 09:50:29 +020036 let b:is_posix = 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.
48if !exists("b:is_kornshell") && !exists("b:is_bash")
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
62 else
63 let b:is_sh= 1
64 endif
65endif
66
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000067" set up default g:sh_fold_enabled {{{1
Bram Moolenaarb4ff5182015-11-10 21:15:48 +010068" ================================
Bram Moolenaar071d4272004-06-13 20:20:40 +000069if !exists("g:sh_fold_enabled")
70 let g:sh_fold_enabled= 0
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000071elseif g:sh_fold_enabled != 0 && !has("folding")
72 let g:sh_fold_enabled= 0
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000073 echomsg "Ignoring g:sh_fold_enabled=".g:sh_fold_enabled."; need to re-compile vim for +fold support"
74endif
Bram Moolenaarc236c162008-07-13 17:41:49 +000075if !exists("s:sh_fold_functions")
Bram Moolenaar97d62492012-11-15 21:28:22 +010076 let s:sh_fold_functions= and(g:sh_fold_enabled,1)
Bram Moolenaarc236c162008-07-13 17:41:49 +000077endif
78if !exists("s:sh_fold_heredoc")
Bram Moolenaar97d62492012-11-15 21:28:22 +010079 let s:sh_fold_heredoc = and(g:sh_fold_enabled,2)
Bram Moolenaarc236c162008-07-13 17:41:49 +000080endif
81if !exists("s:sh_fold_ifdofor")
Bram Moolenaar97d62492012-11-15 21:28:22 +010082 let s:sh_fold_ifdofor = and(g:sh_fold_enabled,4)
Bram Moolenaarc236c162008-07-13 17:41:49 +000083endif
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000084if g:sh_fold_enabled && &fdm == "manual"
Bram Moolenaar97d62492012-11-15 21:28:22 +010085 " Given that the user provided g:sh_fold_enabled
86 " AND g:sh_fold_enabled is manual (usual default)
87 " implies a desire for syntax-based folding
88 setl fdm=syntax
Bram Moolenaar071d4272004-06-13 20:20:40 +000089endif
90
Bram Moolenaare0fa3742016-02-20 15:47:01 +010091" set up the syntax-highlighting iskeyword
Bram Moolenaar723dd942019-04-04 13:11:03 +020092if (v:version == 704 && has("patch-7.4.1142")) || v:version > 704
Bram Moolenaar91c49372016-05-08 09:50:29 +020093 if exists("b:is_bash")
94 exe "syn iskeyword ".&iskeyword.",-,:"
95 else
96 exe "syn iskeyword ".&iskeyword.",-"
97 endif
Bram Moolenaare0fa3742016-02-20 15:47:01 +010098endif
99
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100100" Set up folding commands for shell {{{1
101" =================================
102if s:sh_fold_functions
103 com! -nargs=* ShFoldFunctions <args> fold
104else
105 com! -nargs=* ShFoldFunctions <args>
106endif
107if s:sh_fold_heredoc
108 com! -nargs=* ShFoldHereDoc <args> fold
109else
110 com! -nargs=* ShFoldHereDoc <args>
111endif
112if s:sh_fold_ifdofor
113 com! -nargs=* ShFoldIfDoFor <args> fold
114else
115 com! -nargs=* ShFoldIfDoFor <args>
116endif
117
Bram Moolenaarcd71fa32005-03-11 22:46:48 +0000118" sh syntax is case sensitive {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119syn case match
120
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000121" Clusters: contains=@... clusters {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122"==================================
Bram Moolenaar5c736222010-01-06 20:54:52 +0100123syn cluster shErrorList contains=shDoError,shIfError,shInError,shCaseError,shEsacError,shCurlyError,shParenError,shTestError,shOK
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200124if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000125 syn cluster ErrorList add=shDTestError
126endif
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100127syn 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 +0000128syn cluster shArithList contains=@shArithParenList,shParenError
Bram Moolenaard2855f52018-07-31 22:23:58 +0200129syn cluster shCaseEsacList contains=shCaseStart,shCaseLabel,shCase,shCaseBar,shCaseIn,shComment,shDeref,shDerefSimple,shCaseCommandSub,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote,shCtrlSeq,@shErrorList,shStringSpecial,shCaseRange
130syn cluster shCaseList contains=@shCommandSubList,shCaseEsac,shColon,shCommandSub,shCommandSubBQ,shComment,shDo,shEcho,shExpr,shFor,shForPP,shHereDoc,shIf,shHereString,shRedir,shSetList,shSource,shStatement,shVariable,shCtrlSeq
131syn 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 +0000132syn cluster shCurlyList contains=shNumber,shComma,shDeref,shDerefSimple,shDerefSpecial
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100133" COMBAK: removing shEscape fromshDblQuoteList fails ksh04:43
134syn cluster shDblQuoteList contains=shArithmetic,shCommandSub,shCommandSubBQ,shDeref,shDerefSimple,shPosnParm,shCtrlSeq,shSpecial,shSpecialDQ
Bram Moolenaaracb4f222016-01-10 15:59:26 +0100135syn cluster shDerefList contains=shDeref,shDerefSimple,shDerefVar,shDerefSpecial,shDerefWordError,shDerefPSR,shDerefPPS
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200136syn cluster shDerefVarList contains=shDerefOff,shDerefOp,shDerefVarArray,shDerefOpError
Bram Moolenaard2855f52018-07-31 22:23:58 +0200137syn cluster shEchoList contains=shArithmetic,shCommandSub,shCommandSubBQ,shDeref,shDerefSimple,shEscape,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shCtrlSeq,shEchoQuote
Bram Moolenaare90ee312010-08-05 22:08:47 +0200138syn cluster shExprList1 contains=shCharClass,shNumber,shOperator,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shExpr,shDblBrace,shDeref,shDerefSimple,shCtrlSeq
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000139syn cluster shExprList2 contains=@shExprList1,@shCaseList,shTest
Bram Moolenaard2855f52018-07-31 22:23:58 +0200140syn 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 +0000141if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000142 syn cluster shFunctionList add=shRepeat
Bram Moolenaar7263a772007-05-10 17:35:54 +0000143 syn cluster shFunctionList add=shDblBrace,shDblParen
144endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145syn cluster shHereBeginList contains=@shCommandSubList
146syn cluster shHereList contains=shBeginHere,shHerePayload
147syn cluster shHereListDQ contains=shBeginHere,@shDblQuoteList,shHerePayload
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100148syn 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 +0200149syn cluster shIfList contains=@shLoopList,shDblBrace,shDblParen,shFunctionKey,shFunctionOne,shFunctionTwo
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100150syn cluster shLoopList contains=@shCaseList,@shErrorList,shCaseEsac,shConditional,shDblBrace,shExpr,shFor,shForPP,shIf,shOption,shSet,shTest,shTestOpr,shTouch
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100151syn 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 +0200152syn cluster shPPSRightList contains=shComment,shDeref,shDerefSimple,shEscape,shPosnParm
Bram Moolenaard2855f52018-07-31 22:23:58 +0200153syn 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 +0100154syn 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 +0100155syn cluster shNoZSList contains=shSpecialNoZS
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200156syn cluster shForList contains=shTestOpr,shNumber,shDerefSimple,shDeref,shCommandSub,shCommandSubBQ,shArithmetic
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100157
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000158" Echo: {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159" ====
160" This one is needed INSIDE a CommandSub, so that `echo bla` be correct
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100161syn 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
162syn 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 +0100163syn match shEchoQuote contained '\%(\\\\\)*\\["`'()]'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164
Bram Moolenaarc236c162008-07-13 17:41:49 +0000165" This must be after the strings, so that ... \" will be correct
Bram Moolenaare90ee312010-08-05 22:08:47 +0200166syn 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 +0000167
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000168" Alias: {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169" =====
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200170if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171 syn match shStatement "\<alias\>"
Bram Moolenaard960d762011-09-21 19:22:10 +0200172 syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+\)\@=" skip="\\$" end="\>\|`"
173 syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+=\)\@=" skip="\\$" end="="
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100174
175 " Touch: {{{1
176 " =====
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200177 syn match shTouch '\<touch\>[^;#]*' skipwhite nextgroup=shComment contains=shTouchCmd,shDoubleQuote,shSingleQuote,shDeref,shDerefSimple
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100178 syn match shTouchCmd '\<touch\>' contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179endif
180
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000181" Error Codes: {{{1
182" ============
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100183if !exists("g:sh_no_error")
Bram Moolenaare2719092015-01-10 15:09:25 +0100184 syn match shDoError "\<done\>"
185 syn match shIfError "\<fi\>"
186 syn match shInError "\<in\>"
187 syn match shCaseError ";;"
188 syn match shEsacError "\<esac\>"
189 syn match shCurlyError "}"
190 syn match shParenError ")"
191 syn match shOK '\.\(done\|fi\|in\|esac\)'
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200192 if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaare2719092015-01-10 15:09:25 +0100193 syn match shDTestError "]]"
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100194 endif
Bram Moolenaare2719092015-01-10 15:09:25 +0100195 syn match shTestError "]"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197
Bram Moolenaarc236c162008-07-13 17:41:49 +0000198" Options: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000199" ====================
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200200syn match shOption "\s\zs[-+][-_a-zA-Z#@]\+"
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100201syn match shOption "\s\zs--[^ \t$=`'"|);]\+"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202
Bram Moolenaar7263a772007-05-10 17:35:54 +0000203" File Redirection Highlighted As Operators: {{{1
204"===========================================
205syn match shRedir "\d\=>\(&[-0-9]\)\="
206syn match shRedir "\d\=>>-\="
207syn match shRedir "\d\=<\(&[-0-9]\)\="
208syn match shRedir "\d<<-\="
209
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000210" Operators: {{{1
211" ==========
Bram Moolenaar7263a772007-05-10 17:35:54 +0000212syn match shOperator "<<\|>>" contained
Bram Moolenaarc236c162008-07-13 17:41:49 +0000213syn match shOperator "[!&;|]" contained
214syn match shOperator "\[[[^:]\|\]]" contained
Bram Moolenaar541f92d2015-06-19 13:27:23 +0200215syn match shOperator "[-=/*+%]\==" skipwhite nextgroup=shPattern
Bram Moolenaare90ee312010-08-05 22:08:47 +0200216syn match shPattern "\<\S\+\())\)\@=" contained contains=shExSingleQuote,shSingleQuote,shExDoubleQuote,shDoubleQuote,shDeref
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000218" Subshells: {{{1
219" ==========
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200220syn region shExpr transparent matchgroup=shExprRegion start="{" end="}" contains=@shExprList2 nextgroup=shSpecialNxt
221syn region shSubSh transparent matchgroup=shSubShRegion start="[^(]\zs(" end=")" contains=@shSubShList nextgroup=shSpecialNxt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000223" Tests: {{{1
224"=======
Bram Moolenaar00a927d2010-05-14 23:24:24 +0200225syn region shExpr matchgroup=shRange start="\[" skip=+\\\\\|\\$\|\[+ end="\]" contains=@shTestList,shSpecial
Bram Moolenaar5c736222010-01-06 20:54:52 +0100226syn 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 +0100227syn region shNoQuote start='\S' skip='\%(\\\\\)*\\.' end='\ze\s' end="\ze['"]" contained contains=shDerefSimple,shDeref
Bram Moolenaar91c49372016-05-08 09:50:29 +0200228syn match shAstQuote contained '\*\ze"' nextgroup=shString
Bram Moolenaar541f92d2015-06-19 13:27:23 +0200229syn match shTestOpr contained '[^-+/%]\zs=' skipwhite nextgroup=shTestDoubleQuote,shTestSingleQuote,shTestPattern
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100230syn match shTestOpr contained "<=\|>=\|!=\|==\|=\~\|-.\>\|-\(nt\|ot\|ef\|eq\|ne\|lt\|le\|gt\|ge\)\>\|[!<>]"
Bram Moolenaar9964e462007-05-05 17:54:07 +0000231syn match shTestPattern contained '\w\+'
Bram Moolenaar91c49372016-05-08 09:50:29 +0200232syn region shTestDoubleQuote contained start='\%(\%(\\\\\)*\\\)\@<!"' skip=+\\\\\|\\"+ end='"' contains=shDeref,shDerefSimple,shDerefSpecial
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100233syn match shTestSingleQuote contained '\\.' nextgroup=shTestSingleQuote
Bram Moolenaar9964e462007-05-05 17:54:07 +0000234syn match shTestSingleQuote contained "'[^']*'"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200236 syn region shDblBrace matchgroup=Delimiter start="\[\[" skip=+\%(\\\\\)*\\$+ end="\]\]" contains=@shTestList,shAstQuote,shNoQuote,shComment
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100237 syn region shDblParen matchgroup=Delimiter start="((" skip=+\%(\\\\\)*\\$+ end="))" contains=@shTestList,shComment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238endif
239
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000240" Character Class In Range: {{{1
241" =========================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242syn match shCharClass contained "\[:\(backspace\|escape\|return\|xdigit\|alnum\|alpha\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|tab\):\]"
243
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000244" Loops: do, if, while, until {{{1
245" ======
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100246ShFoldIfDoFor syn region shDo transparent matchgroup=shConditional start="\<do\>" matchgroup=shConditional end="\<done\>" contains=@shLoopList
247ShFoldIfDoFor syn region shIf transparent matchgroup=shConditional start="\<if\_s" matchgroup=shConditional skip=+-fi\>+ end="\<;\_s*then\>" end="\<fi\>" contains=@shIfList
248ShFoldIfDoFor syn region shFor matchgroup=shLoop start="\<for\ze\_s\s*\%(((\)\@!" end="\<in\>" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen skipwhite nextgroup=shCurlyIn
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200249ShFoldIfDoFor syn region shForPP matchgroup=shLoop start='\<for\>\_s*((' end='))' contains=@shForList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100250
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200251if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000252 syn cluster shCaseList add=shRepeat
253 syn cluster shFunctionList add=shRepeat
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200254 syn region shRepeat matchgroup=shLoop start="\<while\_s" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen,shDblBrace
255 syn region shRepeat matchgroup=shLoop start="\<until\_s" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen,shDblBrace
256 if !exists("b:is_posix")
257 syn region shCaseEsac matchgroup=shConditional start="\<select\s" matchgroup=shConditional end="\<in\>" end="\<do\>" contains=@shLoopList
258 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000260 syn region shRepeat matchgroup=shLoop start="\<while\_s" end="\<do\>"me=e-2 contains=@shLoopList
261 syn region shRepeat matchgroup=shLoop start="\<until\_s" end="\<do\>"me=e-2 contains=@shLoopList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262endif
Bram Moolenaar572cb562005-08-05 21:35:02 +0000263syn region shCurlyIn contained matchgroup=Delimiter start="{" end="}" contains=@shCurlyList
264syn match shComma contained ","
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000266" Case: case...esac {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267" ====
Bram Moolenaard2855f52018-07-31 22:23:58 +0200268syn match shCaseBar contained skipwhite "\(^\|[^\\]\)\(\\\\\)*\zs|" nextgroup=shCase,shCaseStart,shCaseBar,shComment,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote
269syn match shCaseStart contained skipwhite skipnl "(" nextgroup=shCase,shCaseBar
270syn match shCaseLabel contained skipwhite "\%(\\.\|[-a-zA-Z0-9_*.]\)\+" contains=shCharClass
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100271if exists("b:is_bash")
Bram Moolenaard2855f52018-07-31 22:23:58 +0200272 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
273else
274 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 +0100275endif
Bram Moolenaard2855f52018-07-31 22:23:58 +0200276ShFoldIfDoFor syn region shCaseEsac matchgroup=shConditional start="\<case\>" end="\<esac\>" contains=@shCaseEsacList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100277
Bram Moolenaardf177f62005-02-22 08:39:57 +0000278syn keyword shCaseIn contained skipwhite skipnl in nextgroup=shCase,shCaseStart,shCaseBar,shComment,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote
279if exists("b:is_bash")
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200280 syn region shCaseExSingleQuote matchgroup=shQuote start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial,shSpecial skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100281elseif !exists("g:sh_no_error")
Bram Moolenaardf177f62005-02-22 08:39:57 +0000282 syn region shCaseExSingleQuote matchgroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
283endif
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200284syn region shCaseSingleQuote matchgroup=shQuote start=+'+ end=+'+ contains=shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
285syn region shCaseDoubleQuote matchgroup=shQuote start=+"+ skip=+\\\\\|\\.+ end=+"+ contains=@shDblQuoteList,shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286syn region shCaseCommandSub start=+`+ skip=+\\\\\|\\.+ end=+`+ contains=@shCommandSubList skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar97d62492012-11-15 21:28:22 +0100287if exists("b:is_bash")
288 syn region shCaseRange matchgroup=Delimiter start=+\[+ skip=+\\\\+ end=+\]+ contained contains=shCharClass
289 syn match shCharClass '\[:\%(alnum\|alpha\|ascii\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|word\|or\|xdigit\):\]' contained
290else
291 syn region shCaseRange matchgroup=Delimiter start=+\[+ skip=+\\\\+ end=+\]+ contained
292endif
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000293" Misc: {{{1
294"======
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295syn match shWrapLineOperator "\\$"
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200296syn region shCommandSubBQ start="`" skip="\\\\\|\\." end="`" contains=shBQComment,@shCommandSubList
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100297"COMBAK: see ksh13:50
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100298"syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.' nextgroup=shSingleQuote,shDoubleQuote,shComment
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100299"COMBAK: see sh11:27
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100300syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.' nextgroup=shComment
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100301"COMBAK: see ksh13:53
302"syn match shEscape contained '\%(^\)\@!\%(\\\\\)*\\.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000304" $() and $(()): {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305" $(..) is not supported by sh (Bourne shell). However, apparently
306" some systems (HP?) have as their /bin/sh a (link to) Korn shell
307" (ie. Posix compliant shell). /bin/ksh should work for those
308" systems too, however, so the following syntax will flag $(..) as
309" an Error under /bin/sh. By consensus of vimdev'ers!
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100310if exists("b:is_kornshell") || exists("b:is_bash") || exists("b:is_posix")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 syn region shCommandSub matchgroup=shCmdSubRegion start="\$(" skip='\\\\\|\\.' end=")" contains=@shCommandSubList
Bram Moolenaarc236c162008-07-13 17:41:49 +0000312 syn region shArithmetic matchgroup=shArithRegion start="\$((" skip='\\\\\|\\.' end="))" contains=@shArithList
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200313 syn region shArithmetic matchgroup=shArithRegion start="\$\[" skip='\\\\\|\\.' end="\]" contains=@shArithList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 syn match shSkipInitWS contained "^\s\+"
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100315elseif !exists("g:sh_no_error")
Bram Moolenaardf177f62005-02-22 08:39:57 +0000316 syn region shCommandSub matchgroup=Error start="\$(" end=")" contains=@shCommandSubList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317endif
Bram Moolenaare2719092015-01-10 15:09:25 +0100318syn region shCmdParenRegion matchgroup=shCmdSubRegion start="(\ze[^(]" skip='\\\\\|\\.' end=")" contains=@shCommandSubList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319
320if exists("b:is_bash")
321 syn cluster shCommandSubList add=bashSpecialVariables,bashStatement
322 syn cluster shCaseList add=bashAdminStatement,bashStatement
Bram Moolenaard960d762011-09-21 19:22:10 +0200323 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 +0100324 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 +0000325 syn keyword bashAdminStatement daemon killall killproc nice reload restart start status stop
Bram Moolenaar97d62492012-11-15 21:28:22 +0100326 syn keyword bashStatement command compgen
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327endif
328
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200329if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330 syn cluster shCommandSubList add=kshSpecialVariables,kshStatement
331 syn cluster shCaseList add=kshStatement
332 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 +0100333 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 +0100334 syn keyword kshStatement command setgroups setsenv
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335endif
336
337syn match shSource "^\.\s"
338syn match shSource "\s\.\s"
Bram Moolenaar5c736222010-01-06 20:54:52 +0100339"syn region shColon start="^\s*:" end="$" end="\s#"me=e-2 contains=@shColonList
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100340"syn region shColon start="^\s*\zs:" end="$" end="\s#"me=e-2
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200341if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200342 syn match shColon '^\s*\zs:'
343endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000345" String And Character Constants: {{{1
346"================================
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200347syn match shNumber "\<\d\+\>#\="
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200348syn match shNumber "\<-\=\.\=\d\+\>#\="
Bram Moolenaar802a0d92016-06-26 16:17:58 +0200349syn match shCtrlSeq "\\\d\d\d\|\\[abcfnrtv0]" contained
Bram Moolenaardf177f62005-02-22 08:39:57 +0000350if exists("b:is_bash")
Bram Moolenaar802a0d92016-06-26 16:17:58 +0200351 syn match shSpecial "[^\\]\(\\\\\)*\zs\\\o\o\o\|\\x\x\x\|\\c[^"]\|\\[abefnrtv]" contained
352 syn match shSpecial "^\(\\\\\)*\zs\\\o\o\o\|\\x\x\x\|\\c[^"]\|\\[abefnrtv]" contained
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200353 syn region shExSingleQuote matchgroup=shQuote start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial,shSpecial nextgroup=shSpecialNxt
354 syn region shExDoubleQuote matchgroup=shQuote start=+\$"+ skip=+\\\\\|\\.\|\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,shSpecial nextgroup=shSpecialNxt
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100355elseif !exists("g:sh_no_error")
Bram Moolenaar9964e462007-05-05 17:54:07 +0000356 syn region shExSingleQuote matchGroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial
Bram Moolenaare90ee312010-08-05 22:08:47 +0200357 syn region shExDoubleQuote matchGroup=Error start=+\$"+ skip=+\\\\\|\\.+ end=+"+ contains=shStringSpecial
Bram Moolenaardf177f62005-02-22 08:39:57 +0000358endif
Bram Moolenaard2855f52018-07-31 22:23:58 +0200359syn region shSingleQuote matchgroup=shQuote start=+'+ end=+'+ contains=@Spell nextgroup=shSpecialStart,shSpecialSQ
Bram Moolenaar47e13952020-05-12 22:49:12 +0200360syn region shDoubleQuote matchgroup=shQuote start=+\%(\%(\\\\\)*\\\)\@<!"+ skip=+\\.+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
361syn region shDoubleQuote matchgroup=shQuote start=+"+ matchgroup=shSpecial skip=+\\"+ end=+"+ contained contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
Bram Moolenaar802a0d92016-06-26 16:17:58 +0200362syn match shStringSpecial "[^[:print:] \t]" contained
Bram Moolenaard2855f52018-07-31 22:23:58 +0200363syn match shStringSpecial "[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]" nextgroup=shComment
364syn match shSpecialSQ "[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]" contained nextgroup=shBkslshSnglQuote,@shNoZSList
365syn match shSpecialDQ "[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]" contained nextgroup=shBkslshDblQuote,@shNoZSList
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200366syn match shSpecialStart "\%(\\\\\)*\\[\\"'`$()#]" contained nextgroup=shBkslshSnglQuote,shBkslshDblQuote,@shNoZSList
Bram Moolenaar60cce2f2015-10-13 23:21:27 +0200367syn match shSpecial "^\%(\\\\\)*\\[\\"'`$()#]"
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100368syn match shSpecialNoZS contained "\%(\\\\\)*\\[\\"'`$()#]"
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200369syn match shSpecialNxt contained "\\[\\"'`$()#]"
Bram Moolenaar47e13952020-05-12 22:49:12 +0200370"syn region shBkslshSnglQuote contained matchgroup=shQuote start=+'+ end=+'+ contains=@Spell nextgroup=shSpecialStart
371"syn region shBkslshDblQuote contained matchgroup=shQuote start=+"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell nextgroup=shSpecialStart
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000373" Comments: {{{1
374"==========
Bram Moolenaar5c736222010-01-06 20:54:52 +0100375syn cluster shCommentGroup contains=shTodo,@Spell
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200376if exists("b:is_bash")
377 syn match shTodo contained "\<\%(COMBAK\|FIXME\|TODO\|XXX\)\ze:\=\>"
378else
379 syn keyword shTodo contained COMBAK FIXME TODO XXX
380endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100381syn match shComment "^\s*\zs#.*$" contains=@shCommentGroup
382syn match shComment "\s\zs#.*$" contains=@shCommentGroup
Bram Moolenaar97d62492012-11-15 21:28:22 +0100383syn match shComment contained "#.*$" contains=@shCommentGroup
Bram Moolenaar5c736222010-01-06 20:54:52 +0100384syn match shQuickComment contained "#.*$"
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200385syn match shBQComment contained "#.\{-}\ze`" contains=@shCommentGroup
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000387" Here Documents: {{{1
388" =========================================
Bram Moolenaar6c1e1572019-06-22 02:13:00 +0200389" Note : shHereDoc0[137] only had shDblQuoteList contained
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100390ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc01 start="<<\s*\\\=\z([^ \t|>]\+\)" matchgroup=shHereDoc01 end="^\z1\s*$" contains=@shDblQuoteList
391ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc02 start="<<\s*\"\z([^"]\+\)\"" matchgroup=shHereDoc02 end="^\z1\s*$"
392ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc03 start="<<-\s*\z([^ \t|>]\+\)" matchgroup=shHereDoc03 end="^\s*\z1\s*$" contains=@shDblQuoteList
Bram Moolenaard2855f52018-07-31 22:23:58 +0200393ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc04 start="<<-\s*'\z([^']\+\)'" matchgroup=shHereDoc04 end="^\s*\z1\s*$"
394ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc05 start="<<\s*'\z([^']\+\)'" matchgroup=shHereDoc05 end="^\z1\s*$"
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100395ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc06 start="<<-\s*\"\z([^"]\+\)\"" matchgroup=shHereDoc06 end="^\s*\z1\s*$"
Bram Moolenaar6c1e1572019-06-22 02:13:00 +0200396ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc07 start="<<\s*\\\_$\_s*\z([^ \t'"|>]\+\)" matchgroup=shHereDoc07 end="^\z1\s*$"
397ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc08 start="<<\s*\\\_$\_s*'\z([^\t|>]\+\)'" matchgroup=shHereDoc08 end="^\z1\s*$"
398ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc09 start="<<\s*\\\_$\_s*\"\z([^\t|>]\+\)\"" matchgroup=shHereDoc09 end="^\z1\s*$"
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100399ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc10 start="<<-\s*\\\_$\_s*\z([^ \t|>]\+\)" matchgroup=shHereDoc10 end="^\s*\z1\s*$"
Bram Moolenaar6c1e1572019-06-22 02:13:00 +0200400ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc11 start="<<-\s*\\\_$\_s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc11 end="^\s*\z1\s*$" contains=@shDblQuoteList
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100401ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc12 start="<<-\s*\\\_$\_s*'\z([^']\+\)'" matchgroup=shHereDoc12 end="^\s*\z1\s*$"
402ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc13 start="<<-\s*\\\_$\_s*\"\z([^"]\+\)\"" matchgroup=shHereDoc13 end="^\s*\z1\s*$"
Bram Moolenaar6c1e1572019-06-22 02:13:00 +0200403ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc14 start="<<\\\z([^ \t|>]\+\)" matchgroup=shHereDoc14 end="^\z1\s*$" contains=@shDblQuoteList
404ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc15 start="<<-\s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc15 end="^\s*\z1\s*$" contains=@shDblQuoteList
405ShFoldHereDoc syn region shHereDoc matchgroup=shHereDoc16 start="<<-\s*\\\z([^ \t|>]\+\)" matchgroup=shHereDoc15 end="^\s*\z1\s*$" contains=@shDblQuoteList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000407" Here Strings: {{{1
408" =============
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200409" available for: bash; ksh (really should be ksh93 only) but not if its a posix
Bram Moolenaar690afe12017-01-28 18:34:47 +0100410if exists("b:is_bash") || (exists("b:is_kornshell") && !exists("b:is_posix"))
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200411 syn match shHereString "<<<" skipwhite nextgroup=shCmdParenRegion
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000412endif
413
414" Identifiers: {{{1
415"=============
Bram Moolenaarc236c162008-07-13 17:41:49 +0000416syn match shSetOption "\s\zs[-+][a-zA-Z0-9]\+\>" contained
Bram Moolenaar541f92d2015-06-19 13:27:23 +0200417syn match shVariable "\<\([bwglsav]:\)\=[a-zA-Z0-9.!@_%+,]*\ze=" nextgroup=shVarAssign
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100418syn match shVarAssign "=" contained nextgroup=shCmdParenRegion,shPattern,shDeref,shDerefSimple,shDoubleQuote,shExDoubleQuote,shSingleQuote,shExSingleQuote,shVar
419syn match shVar contained "\h\w*"
Bram Moolenaarbc488a72013-07-05 21:01:22 +0200420syn region shAtExpr contained start="@(" end=")" contains=@shIdList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421if exists("b:is_bash")
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100422 syn match shSet "^\s*set\ze\s\+$"
423 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
424 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 +0200425elseif exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100426 syn match shSet "^\s*set\ze\s\+$"
427 syn region shSetList oneline matchgroup=shSet start="\<\(export\)\>\ze[/]\@!" end="$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]" contains=@shIdList
428 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 +0000429else
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100430 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 +0000431endif
432
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000433" Functions: {{{1
Bram Moolenaar690afe12017-01-28 18:34:47 +0100434if !exists("b:is_posix")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000435 syn keyword shFunctionKey function skipwhite skipnl nextgroup=shFunctionTwo
436endif
437
438if exists("b:is_bash")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200439 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
440 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
441 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
442 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 +0000443else
Bram Moolenaar91c49372016-05-08 09:50:29 +0200444 ShFoldFunctions syn region shFunctionOne matchgroup=shFunction start="^\s*\h\w*\s*()\_s*{" end="}" contains=@shFunctionList skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
445 ShFoldFunctions syn region shFunctionTwo matchgroup=shFunction start="\%(do\)\@!\&\<\h\w*\>\s*\%(()\)\=\_s*{" end="}" contains=shFunctionKey,@shFunctionList contained skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
446 ShFoldFunctions syn region shFunctionThree matchgroup=shFunction start="^\s*\h\w*\s*()\_s*(" end=")" contains=@shFunctionList skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
447 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 +0000448endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000450" Parameter Dereferencing: {{{1
451" ========================
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100452if !exists("g:sh_no_error")
Bram Moolenaar91c49372016-05-08 09:50:29 +0200453 syn match shDerefWordError "[^}$[~]" contained
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100454endif
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100455syn match shDerefSimple "\$\%(\h\w*\|\d\)" nextgroup=@shNoZSList
Bram Moolenaar47e13952020-05-12 22:49:12 +0200456syn region shDeref matchgroup=PreProc start="\${" end="}" contains=@shDerefList,shDerefVarArray nextgroup=shSpecialStart
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100457syn match shDerefSimple "\$[-#*@!?]" nextgroup=@shNoZSList
458syn match shDerefSimple "\$\$" nextgroup=@shNoZSList
Bram Moolenaar47e13952020-05-12 22:49:12 +0200459syn match shDerefSimple "\${\d}" nextgroup=@shNoZSList nextgroup=shSpecialStart
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200460if exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaar47e13952020-05-12 22:49:12 +0200461 syn region shDeref matchgroup=PreProc start="\${##\=" end="}" contains=@shDerefList nextgroup=@shSpecialNoZS,shSpecialStart
462 syn region shDeref matchgroup=PreProc start="\${\$\$" end="}" contains=@shDerefList nextgroup=@shSpecialNoZS,shSpecialStart
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463endif
464
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100465" ksh: ${!var[*]} array index list syntax: {{{1
466" ========================================
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200467if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100468 syn region shDeref matchgroup=PreProc start="\${!" end="}" contains=@shDerefVarArray
469endif
470
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000471" bash: ${!prefix*} and ${#parameter}: {{{1
472" ====================================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473if exists("b:is_bash")
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200474 syn region shDeref matchgroup=PreProc start="\${!" end="\*\=}" contains=@shDerefList,shDerefOff
475 syn match shDerefVar contained "{\@<=!\h\w*" nextgroup=@shDerefVarList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476endif
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100477if exists("b:is_kornshell")
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200478 syn match shDerefVar contained "{\@<=!\h\w*[[:alnum:]_.]*" nextgroup=@shDerefVarList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100479endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480
481syn match shDerefSpecial contained "{\@<=[-*@?0]" nextgroup=shDerefOp,shDerefOpError
482syn match shDerefSpecial contained "\({[#!]\)\@<=[[:alnum:]*@_]\+" nextgroup=@shDerefVarList,shDerefOp
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200483syn match shDerefVar contained "{\@<=\h\w*" nextgroup=@shDerefVarList
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200484syn match shDerefVar contained '\d' nextgroup=@shDerefVarList
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200485if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarbc8801c2016-08-02 21:04:33 +0200486 syn match shDerefVar contained "{\@<=\h\w*[[:alnum:]_.]*" nextgroup=@shDerefVarList
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100487endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000489" sh ksh bash : ${var[... ]...} array reference: {{{1
Bram Moolenaare2719092015-01-10 15:09:25 +0100490syn region shDerefVarArray contained matchgroup=shDeref start="\[" end="]" contains=@shCommandSubList nextgroup=shDerefOp,shDerefOpError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000492" Special ${parameter OPERATOR word} handling: {{{1
Bram Moolenaare2719092015-01-10 15:09:25 +0100493" sh ksh bash : ${parameter:-word} word is default value
494" sh ksh bash : ${parameter:=word} assign word as default value
495" sh ksh bash : ${parameter:?word} display word if parameter is null
496" sh ksh bash : ${parameter:+word} use word if parameter is not null, otherwise nothing
497" ksh bash : ${parameter#pattern} remove small left pattern
498" ksh bash : ${parameter##pattern} remove large left pattern
499" ksh bash : ${parameter%pattern} remove small right pattern
500" ksh bash : ${parameter%%pattern} remove large right pattern
501" bash : ${parameter^pattern} Case modification
502" bash : ${parameter^^pattern} Case modification
503" bash : ${parameter,pattern} Case modification
504" bash : ${parameter,,pattern} Case modification
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505syn cluster shDerefPatternList contains=shDerefPattern,shDerefString
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100506if !exists("g:sh_no_error")
507 syn match shDerefOpError contained ":[[:punct:]]"
508endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509syn match shDerefOp contained ":\=[-=?]" nextgroup=@shDerefPatternList
510syn match shDerefOp contained ":\=+" nextgroup=@shDerefPatternList
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200511if exists("b:is_bash") || exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200512 syn match shDerefOp contained "#\{1,2}" nextgroup=@shDerefPatternList
513 syn match shDerefOp contained "%\{1,2}" nextgroup=@shDerefPatternList
514 syn match shDerefPattern contained "[^{}]\+" contains=shDeref,shDerefSimple,shDerefPattern,shDerefString,shCommandSub,shDerefEscape nextgroup=shDerefPattern
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 syn region shDerefPattern contained start="{" end="}" contains=shDeref,shDerefSimple,shDerefString,shCommandSub nextgroup=shDerefPattern
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000516 syn match shDerefEscape contained '\%(\\\\\)*\\.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517endif
Bram Moolenaard960d762011-09-21 19:22:10 +0200518if exists("b:is_bash")
519 syn match shDerefOp contained "[,^]\{1,2}" nextgroup=@shDerefPatternList
520endif
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200521syn region shDerefString contained matchgroup=shDerefDelim start=+\%(\\\)\@<!'+ end=+'+ contains=shStringSpecial
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200522syn region shDerefString contained matchgroup=shDerefDelim start=+\%(\\\)\@<!"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial
Bram Moolenaarc236c162008-07-13 17:41:49 +0000523syn match shDerefString contained "\\["']" nextgroup=shDerefPattern
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525if exists("b:is_bash")
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000526 " bash : ${parameter:offset}
527 " bash : ${parameter:offset:length}
Bram Moolenaard2855f52018-07-31 22:23:58 +0200528 syn region shDerefOff contained start=':[^-=?+]' end='\ze:' end='\ze}' contains=shDeref,shDerefSimple,shDerefEscape nextgroup=shDerefLen,shDeref,shDerefSimple
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +0200529 syn region shDerefOff contained start=':\s-' end='\ze:' end='\ze}' contains=shDeref,shDerefSimple,shDerefEscape nextgroup=shDerefLen,shDeref,shDerefSimple
Bram Moolenaard2855f52018-07-31 22:23:58 +0200530 syn match shDerefLen contained ":[^}]\+" contains=shDeref,shDerefSimple,shArithmetic
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000531
532 " bash : ${parameter//pattern/string}
533 " bash : ${parameter//pattern}
534 syn match shDerefPPS contained '/\{1,2}' nextgroup=shDerefPPSleft
Bram Moolenaar1d9215b2020-01-25 13:27:42 +0100535 syn region shDerefPPSleft contained start='.' skip=@\%(\\\\\)*\\/@ matchgroup=shDerefOp end='/' end='\ze}' nextgroup=shDerefPPSright contains=@shPPSLeftList
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100536 syn region shDerefPPSright contained start='.' skip=@\%(\\\\\)\+@ end='\ze}' contains=@shPPSRightList
Bram Moolenaaracb4f222016-01-10 15:59:26 +0100537
538 " bash : ${parameter/#substring/replacement}
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200539 syn match shDerefPSR contained '/#' nextgroup=shDerefPSRleft,shDoubleQuote,shSingleQuote
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100540 syn region shDerefPSRleft contained start='[^"']' skip=@\%(\\\\\)*\\/@ matchgroup=shDerefOp end='/' end='\ze}' nextgroup=shDerefPSRright
Bram Moolenaaracb4f222016-01-10 15:59:26 +0100541 syn region shDerefPSRright contained start='.' skip=@\%(\\\\\)\+@ end='\ze}'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542endif
543
Bram Moolenaarc236c162008-07-13 17:41:49 +0000544" Arithmetic Parenthesized Expressions: {{{1
Bram Moolenaarbc488a72013-07-05 21:01:22 +0200545"syn region shParen matchgroup=shArithRegion start='[^$]\zs(\%(\ze[^(]\|$\)' end=')' contains=@shArithParenList
546syn region shParen matchgroup=shArithRegion start='\$\@!(\%(\ze[^(]\|$\)' end=')' contains=@shArithParenList
Bram Moolenaarc236c162008-07-13 17:41:49 +0000547
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200548" Additional sh Keywords: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000549" ===================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550syn keyword shStatement break cd chdir continue eval exec exit kill newgrp pwd read readonly return shift test trap ulimit umask wait
551syn keyword shConditional contained elif else then
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100552if !exists("g:sh_no_error")
553 syn keyword shCondError elif else then
554endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200556" Additional ksh Keywords and Aliases: {{{1
557" ===================================
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100558if exists("b:is_kornshell") || exists("b:is_posix")
559 syn keyword shStatement bg builtin disown enum export false fg getconf getopts hist jobs let printf sleep true unalias whence
560 syn keyword shStatement typeset skipwhite nextgroup=shSetOption
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200561 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 +0100562 if exists("b:is_posix")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000563 syn keyword shStatement command
564 else
565 syn keyword shStatement time
566 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200568" Additional bash Keywords: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000569" =====================
Bram Moolenaarb730f0c2018-11-25 03:56:26 +0100570elseif exists("b:is_bash")
571 syn keyword shStatement bg builtin disown export false fg getopts jobs let printf sleep true unalias
572 syn keyword shStatement typeset nextgroup=shSetOption
573 syn keyword shStatement fc hash history source suspend times type
574 syn keyword shStatement bind builtin caller compopt declare dirs disown enable export help logout mapfile popd pushd readarray shopt source typeset
575else
576 syn keyword shStatement login newgrp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577endif
578
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000579" Synchronization: {{{1
580" ================
Bram Moolenaar03413f42016-04-12 21:07:15 +0200581if !exists("g:sh_minlines")
582 let s:sh_minlines = 200
583else
584 let s:sh_minlines= g:sh_minlines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585endif
Bram Moolenaar03413f42016-04-12 21:07:15 +0200586if !exists("g:sh_maxlines")
587 let s:sh_maxlines = 2*s:sh_minlines
588 if s:sh_maxlines < 25
589 let s:sh_maxlines= 25
590 endif
591else
592 let s:sh_maxlines= g:sh_maxlines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593endif
Bram Moolenaar03413f42016-04-12 21:07:15 +0200594exec "syn sync minlines=" . s:sh_minlines . " maxlines=" . s:sh_maxlines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595syn sync match shCaseEsacSync grouphere shCaseEsac "\<case\>"
596syn sync match shCaseEsacSync groupthere shCaseEsac "\<esac\>"
597syn sync match shDoSync grouphere shDo "\<do\>"
598syn sync match shDoSync groupthere shDo "\<done\>"
599syn sync match shForSync grouphere shFor "\<for\>"
600syn sync match shForSync groupthere shFor "\<in\>"
601syn sync match shIfSync grouphere shIf "\<if\>"
602syn sync match shIfSync groupthere shIf "\<fi\>"
603syn sync match shUntilSync grouphere shRepeat "\<until\>"
604syn sync match shWhileSync grouphere shRepeat "\<while\>"
605
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000606" Default Highlighting: {{{1
607" =====================
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200608if !exists("skip_sh_syntax_inits")
609 hi def link shArithRegion shShellVariables
610 hi def link shAstQuote shDoubleQuote
611 hi def link shAtExpr shSetList
Bram Moolenaard2855f52018-07-31 22:23:58 +0200612 hi def link shBkslshSnglQuote shSingleQuote
613 hi def link shBkslshDblQuote shDOubleQuote
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200614 hi def link shBeginHere shRedir
615 hi def link shCaseBar shConditional
616 hi def link shCaseCommandSub shCommandSub
617 hi def link shCaseDoubleQuote shDoubleQuote
618 hi def link shCaseIn shConditional
619 hi def link shQuote shOperator
620 hi def link shCaseSingleQuote shSingleQuote
621 hi def link shCaseStart shConditional
622 hi def link shCmdSubRegion shShellVariables
623 hi def link shColon shComment
624 hi def link shDerefOp shOperator
625 hi def link shDerefPOL shDerefOp
626 hi def link shDerefPPS shDerefOp
627 hi def link shDerefPSR shDerefOp
628 hi def link shDeref shShellVariables
629 hi def link shDerefDelim shOperator
630 hi def link shDerefSimple shDeref
631 hi def link shDerefSpecial shDeref
632 hi def link shDerefString shDoubleQuote
633 hi def link shDerefVar shDeref
634 hi def link shDoubleQuote shString
635 hi def link shEcho shString
636 hi def link shEchoDelim shOperator
637 hi def link shEchoQuote shString
638 hi def link shForPP shLoop
639 hi def link shFunction Function
640 hi def link shEmbeddedEcho shString
641 hi def link shEscape shCommandSub
642 hi def link shExDoubleQuote shDoubleQuote
643 hi def link shExSingleQuote shSingleQuote
644 hi def link shHereDoc shString
645 hi def link shHereString shRedir
646 hi def link shHerePayload shHereDoc
647 hi def link shLoop shStatement
648 hi def link shSpecialNxt shSpecial
649 hi def link shNoQuote shDoubleQuote
650 hi def link shOption shCommandSub
651 hi def link shPattern shString
652 hi def link shParen shArithmetic
653 hi def link shPosnParm shShellVariables
654 hi def link shQuickComment shComment
Bram Moolenaar93a1df22018-09-10 11:51:50 +0200655 hi def link shBQComment shComment
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200656 hi def link shRange shOperator
657 hi def link shRedir shOperator
658 hi def link shSetListDelim shOperator
659 hi def link shSetOption shOption
660 hi def link shSingleQuote shString
661 hi def link shSource shOperator
662 hi def link shStringSpecial shSpecial
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200663 hi def link shSpecialStart shSpecial
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200664 hi def link shSubShRegion shOperator
665 hi def link shTestOpr shConditional
666 hi def link shTestPattern shString
667 hi def link shTestDoubleQuote shString
668 hi def link shTestSingleQuote shString
669 hi def link shTouchCmd shStatement
670 hi def link shVariable shSetList
671 hi def link shWrapLineOperator shOperator
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200673 if exists("b:is_bash")
674 hi def link bashAdminStatement shStatement
675 hi def link bashSpecialVariables shShellVariables
676 hi def link bashStatement shStatement
677 hi def link shCharClass shSpecial
678 hi def link shDerefOff shDerefOp
679 hi def link shDerefLen shDerefOff
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100680 endif
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200681 if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200682 hi def link kshSpecialVariables shShellVariables
683 hi def link kshStatement shStatement
684 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200686 if !exists("g:sh_no_error")
687 hi def link shCaseError Error
688 hi def link shCondError Error
689 hi def link shCurlyError Error
690 hi def link shDerefOpError Error
691 hi def link shDerefWordError Error
692 hi def link shDoError Error
693 hi def link shEsacError Error
694 hi def link shIfError Error
695 hi def link shInError Error
696 hi def link shParenError Error
697 hi def link shTestError Error
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200698 if exists("b:is_kornshell") || exists("b:is_posix")
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200699 hi def link shDTestError Error
700 endif
701 endif
702
703 hi def link shArithmetic Special
704 hi def link shCharClass Identifier
705 hi def link shSnglCase Statement
706 hi def link shCommandSub Special
Bram Moolenaard2855f52018-07-31 22:23:58 +0200707 hi def link shCommandSubBQ shCommandSub
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200708 hi def link shComment Comment
709 hi def link shConditional Conditional
710 hi def link shCtrlSeq Special
711 hi def link shExprRegion Delimiter
712 hi def link shFunctionKey Function
713 hi def link shFunctionName Function
714 hi def link shNumber Number
715 hi def link shOperator Operator
716 hi def link shRepeat Repeat
717 hi def link shSet Statement
718 hi def link shSetList Identifier
719 hi def link shShellVariables PreProc
720 hi def link shSpecial Special
Bram Moolenaard2855f52018-07-31 22:23:58 +0200721 hi def link shSpecialDQ Special
722 hi def link shSpecialSQ Special
Bram Moolenaarb0d45e72017-11-05 18:19:24 +0100723 hi def link shSpecialNoZS shSpecial
Bram Moolenaarf37506f2016-08-31 22:22:10 +0200724 hi def link shStatement Statement
725 hi def link shString String
726 hi def link shTodo Todo
727 hi def link shAlias Identifier
728 hi def link shHereDoc01 shRedir
729 hi def link shHereDoc02 shRedir
730 hi def link shHereDoc03 shRedir
731 hi def link shHereDoc04 shRedir
732 hi def link shHereDoc05 shRedir
733 hi def link shHereDoc06 shRedir
734 hi def link shHereDoc07 shRedir
735 hi def link shHereDoc08 shRedir
736 hi def link shHereDoc09 shRedir
737 hi def link shHereDoc10 shRedir
738 hi def link shHereDoc11 shRedir
739 hi def link shHereDoc12 shRedir
740 hi def link shHereDoc13 shRedir
741 hi def link shHereDoc14 shRedir
742 hi def link shHereDoc15 shRedir
743endif
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100744
745" Delete shell folding commands {{{1
746" =============================
747delc ShFoldFunctions
748delc ShFoldHereDoc
749delc ShFoldIfDoFor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000751" Set Current Syntax: {{{1
752" ===================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753if exists("b:is_bash")
754 let b:current_syntax = "bash"
755elseif exists("b:is_kornshell")
756 let b:current_syntax = "ksh"
Bram Moolenaar51ad4ea2018-04-06 11:14:11 +0200757elseif exists("b:is_posix")
758 let b:current_syntax = "posix"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759else
760 let b:current_syntax = "sh"
761endif
762
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000763" vim: ts=16 fdm=marker