blob: 1497499c598afd808e6c80390f28d15f36b0638f [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim syntax file
2" Language: shell (sh) Korn shell (ksh) bash (sh)
3" Maintainer: Dr. Charles E. Campbell, Jr. <NdrOchipS@PcampbellAfamily.Mbiz>
4" Previous Maintainer: Lennart Schultz <Lennart.Schultz@ecmwf.int>
Bram Moolenaar6be7f872012-01-20 21:08:56 +01005" Last Change: Dec 09, 2011
6" Version: 121
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00007" URL: http://mysite.verizon.net/astronaut/vim/index.html#vimlinks_syntax
Bram Moolenaarc236c162008-07-13 17:41:49 +00008" For options and settings, please use: :help ft-sh-syntax
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +02009" This file includes many ideas from ?ric Brunet (eric.brunet@ens.fr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010
Bram Moolenaard4755bb2004-09-02 19:12:26 +000011" For version 5.x: Clear all syntax items {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +000012" For version 6.x: Quit when a syntax file was already loaded
13if version < 600
14 syntax clear
15elseif exists("b:current_syntax")
16 finish
17endif
18
Bram Moolenaard960d762011-09-21 19:22:10 +020019" AFAICT "." should be considered part of the iskeyword. Using iskeywords in
20" syntax is dicey, so the following code permits the user to prevent/override
21" its setting.
22if exists("g:sh_isk") " override support
23 exe "setlocal isk=".g:sh_isk
24elseif !exists("g:sh_noisk") " prevent modification support
25 setlocal isk+=.
26endif
27
28" trying to answer the question: which shell is /bin/sh, really?
29if !exists("g:is_kornshell") && !exists("g:is_bash") && !exists("g:is_posix") && !exists("g:is_sh")
30 if executable("/bin/sh")
31 if resolve("/bin/sh") =~ 'bash$'
32 let g:is_bash= 1
33 elseif resolve("/bin/sh") =~ 'ksh$'
34 let g:is_ksh = 1
35 endif
36 elseif executable("/usr/bin/sh")
37 if resolve("/usr/bin//sh") =~ 'bash$'
38 let g:is_bash= 1
39 elseif resolve("/usr/bin//sh") =~ 'ksh$'
40 let g:is_ksh = 1
41 endif
42 endif
43endif
44
Bram Moolenaard4755bb2004-09-02 19:12:26 +000045" handling /bin/sh with is_kornshell/is_sh {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +000046" b:is_sh is set when "#! /bin/sh" is found;
47" However, it often is just a masquerade by bash (typically Linux)
48" or kornshell (typically workstations with Posix "sh").
Bram Moolenaard960d762011-09-21 19:22:10 +020049" So, when the user sets "g:is_bash", "g:is_kornshell",
50" or "g:is_posix", a b:is_sh is converted into b:is_bash/b:is_kornshell,
Bram Moolenaar071d4272004-06-13 20:20:40 +000051" respectively.
52if !exists("b:is_kornshell") && !exists("b:is_bash")
Bram Moolenaar7fc904b2006-04-13 20:37:35 +000053 if exists("g:is_posix") && !exists("g:is_kornshell")
54 let g:is_kornshell= g:is_posix
55 endif
56 if exists("g:is_kornshell")
Bram Moolenaar071d4272004-06-13 20:20:40 +000057 let b:is_kornshell= 1
58 if exists("b:is_sh")
59 unlet b:is_sh
60 endif
Bram Moolenaar7fc904b2006-04-13 20:37:35 +000061 elseif exists("g:is_bash")
Bram Moolenaar071d4272004-06-13 20:20:40 +000062 let b:is_bash= 1
63 if exists("b:is_sh")
64 unlet b:is_sh
65 endif
66 else
67 let b:is_sh= 1
68 endif
69endif
70
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000071" set up default g:sh_fold_enabled {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +000072if !exists("g:sh_fold_enabled")
73 let g:sh_fold_enabled= 0
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000074elseif g:sh_fold_enabled != 0 && !has("folding")
75 let g:sh_fold_enabled= 0
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000076 echomsg "Ignoring g:sh_fold_enabled=".g:sh_fold_enabled."; need to re-compile vim for +fold support"
77endif
Bram Moolenaarc236c162008-07-13 17:41:49 +000078if !exists("s:sh_fold_functions")
79 let s:sh_fold_functions = 1
80endif
81if !exists("s:sh_fold_heredoc")
82 let s:sh_fold_heredoc = 2
83endif
84if !exists("s:sh_fold_ifdofor")
85 let s:sh_fold_ifdofor = 4
86endif
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000087if g:sh_fold_enabled && &fdm == "manual"
Bram Moolenaar00a927d2010-05-14 23:24:24 +020088 setlocal fdm=syntax
Bram Moolenaar071d4272004-06-13 20:20:40 +000089endif
90
Bram Moolenaarcd71fa32005-03-11 22:46:48 +000091" sh syntax is case sensitive {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +000092syn case match
93
Bram Moolenaard4755bb2004-09-02 19:12:26 +000094" Clusters: contains=@... clusters {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +000095"==================================
Bram Moolenaar5c736222010-01-06 20:54:52 +010096syn cluster shErrorList contains=shDoError,shIfError,shInError,shCaseError,shEsacError,shCurlyError,shParenError,shTestError,shOK
Bram Moolenaarc236c162008-07-13 17:41:49 +000097if exists("b:is_kornshell")
98 syn cluster ErrorList add=shDTestError
99endif
Bram Moolenaare90ee312010-08-05 22:08:47 +0200100syn cluster shArithParenList contains=shArithmetic,shCaseEsac,shDeref,shDerefSimple,shEcho,shEscape,shNumber,shOperator,shPosnParm,shExSingleQuote,shExDoubleQuote,shRedir,shSingleQuote,shDoubleQuote,shStatement,shVariable,shAlias,shTest,shCtrlSeq,shSpecial,shParen,bashSpecialVariables,bashStatement
Bram Moolenaarc236c162008-07-13 17:41:49 +0000101syn cluster shArithList contains=@shArithParenList,shParenError
Bram Moolenaar5c736222010-01-06 20:54:52 +0100102syn cluster shCaseEsacList contains=shCaseStart,shCase,shCaseBar,shCaseIn,shComment,shDeref,shDerefSimple,shCaseCommandSub,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote,shCtrlSeq,@shErrorList,shStringSpecial,shCaseRange
Bram Moolenaard960d762011-09-21 19:22:10 +0200103syn cluster shCaseList contains=@shCommandSubList,shCaseEsac,shColon,shCommandSub,shComment,shDo,shEcho,shExpr,shFor,shHereDoc,shIf,shRedir,shSetList,shSource,shStatement,shVariable,shCtrlSeq
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100104"syn cluster shColonList contains=@shCaseList
Bram Moolenaare90ee312010-08-05 22:08:47 +0200105syn cluster shCommandSubList contains=shArithmetic,shDeref,shDerefSimple,shEscape,shNumber,shOperator,shPosnParm,shExSingleQuote,shSingleQuote,shExDoubleQuote,shDoubleQuote,shStatement,shVariable,shSubSh,shAlias,shTest,shCtrlSeq,shSpecial
Bram Moolenaar572cb562005-08-05 21:35:02 +0000106syn cluster shCurlyList contains=shNumber,shComma,shDeref,shDerefSimple,shDerefSpecial
Bram Moolenaare90ee312010-08-05 22:08:47 +0200107syn cluster shDblQuoteList contains=shCommandSub,shDeref,shDerefSimple,shPosnParm,shCtrlSeq,shSpecial
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000108syn cluster shDerefList contains=shDeref,shDerefSimple,shDerefVar,shDerefSpecial,shDerefWordError,shDerefPPS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109syn cluster shDerefVarList contains=shDerefOp,shDerefVarArray,shDerefOpError
Bram Moolenaare90ee312010-08-05 22:08:47 +0200110syn cluster shEchoList contains=shArithmetic,shCommandSub,shDeref,shDerefSimple,shExpr,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shCtrlSeq,shEchoQuote
111syn cluster shExprList1 contains=shCharClass,shNumber,shOperator,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shExpr,shDblBrace,shDeref,shDerefSimple,shCtrlSeq
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000112syn cluster shExprList2 contains=@shExprList1,@shCaseList,shTest
Bram Moolenaard960d762011-09-21 19:22:10 +0200113syn cluster shFunctionList contains=@shCommandSubList,shCaseEsac,shColon,shCommandSub,shComment,shDo,shEcho,shExpr,shFor,shHereDoc,shIf,shOption,shRedir,shSetList,shSource,shStatement,shVariable,shOperator,shCtrlSeq
Bram Moolenaar7263a772007-05-10 17:35:54 +0000114if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000115 syn cluster shFunctionList add=shRepeat
Bram Moolenaar7263a772007-05-10 17:35:54 +0000116 syn cluster shFunctionList add=shDblBrace,shDblParen
117endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118syn cluster shHereBeginList contains=@shCommandSubList
119syn cluster shHereList contains=shBeginHere,shHerePayload
120syn cluster shHereListDQ contains=shBeginHere,@shDblQuoteList,shHerePayload
Bram Moolenaare90ee312010-08-05 22:08:47 +0200121syn cluster shIdList contains=shCommandSub,shWrapLineOperator,shSetOption,shDeref,shDerefSimple,shRedir,shExSingleQuote,shExDoubleQuote,shSingleQuote,shDoubleQuote,shExpr,shCtrlSeq,shStringSpecial
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100122syn cluster shIfList contains=@shLoopList,shDblBrace,shDblParen,shFunctionKey,shFunctionOne,shFunctionTwo
123syn cluster shLoopList contains=@shCaseList,shTestOpr,shExpr,shDblBrace,shConditional,shCaseEsac,shTest,@shErrorList,shSet,shOption
Bram Moolenaard960d762011-09-21 19:22:10 +0200124syn cluster shSubShList contains=@shCommandSubList,shCaseEsac,shColon,shCommandSub,shComment,shDo,shEcho,shExpr,shFor,shIf,shRedir,shSetList,shSource,shStatement,shVariable,shCtrlSeq,shOperator
125syn cluster shTestList contains=shCharClass,shComment,shCommandSub,shDeref,shDerefSimple,shExDoubleQuote,shDoubleQuote,shExpr,shNumber,shOperator,shExSingleQuote,shSingleQuote,shTestOpr,shTest,shCtrlSeq
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000126" Echo: {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127" ====
128" This one is needed INSIDE a CommandSub, so that `echo bla` be correct
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200129syn region shEcho matchgroup=shStatement start="\<echo\>" skip="\\$" matchgroup=shEchoDelim end="$" matchgroup=NONE end="[<>;&|()]"me=e-1 end="\d[<>]"me=e-2 end="\s#"me=e-2 contains=@shEchoList skipwhite nextgroup=shQuickComment
130syn region shEcho 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=@shEchoList skipwhite nextgroup=shQuickComment
Bram Moolenaar5c736222010-01-06 20:54:52 +0100131syn match shEchoQuote contained '\%(\\\\\)*\\["`'()]'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132
Bram Moolenaarc236c162008-07-13 17:41:49 +0000133" This must be after the strings, so that ... \" will be correct
Bram Moolenaare90ee312010-08-05 22:08:47 +0200134syn 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 +0000135
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000136" Alias: {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137" =====
138if exists("b:is_kornshell") || exists("b:is_bash")
139 syn match shStatement "\<alias\>"
Bram Moolenaard960d762011-09-21 19:22:10 +0200140 syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+\)\@=" skip="\\$" end="\>\|`"
141 syn region shAlias matchgroup=shStatement start="\<alias\>\s\+\(\h[-._[:alnum:]]\+=\)\@=" skip="\\$" end="="
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142endif
143
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000144" Error Codes: {{{1
145" ============
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100146if !exists("g:sh_no_error")
147 syn match shDoError "\<done\>"
148 syn match shIfError "\<fi\>"
149 syn match shInError "\<in\>"
150 syn match shCaseError ";;"
151 syn match shEsacError "\<esac\>"
152 syn match shCurlyError "}"
153 syn match shParenError ")"
154 syn match shOK '\.\(done\|fi\|in\|esac\)'
155 if exists("b:is_kornshell")
156 syn match shDTestError "]]"
157 endif
158 syn match shTestError "]"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160
Bram Moolenaarc236c162008-07-13 17:41:49 +0000161" Options: {{{1
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000162" ====================
Bram Moolenaarfa01c392010-07-20 12:36:02 +0200163syn match shOption "\s\zs[-+][-_a-zA-Z0-9]\+\>"
Bram Moolenaarc236c162008-07-13 17:41:49 +0000164syn match shOption "\s\zs--[^ \t$`'"|]\+"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165
Bram Moolenaar7263a772007-05-10 17:35:54 +0000166" File Redirection Highlighted As Operators: {{{1
167"===========================================
168syn match shRedir "\d\=>\(&[-0-9]\)\="
169syn match shRedir "\d\=>>-\="
170syn match shRedir "\d\=<\(&[-0-9]\)\="
171syn match shRedir "\d<<-\="
172
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000173" Operators: {{{1
174" ==========
Bram Moolenaar7263a772007-05-10 17:35:54 +0000175syn match shOperator "<<\|>>" contained
Bram Moolenaarc236c162008-07-13 17:41:49 +0000176syn match shOperator "[!&;|]" contained
177syn match shOperator "\[[[^:]\|\]]" contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178syn match shOperator "!\==" skipwhite nextgroup=shPattern
Bram Moolenaare90ee312010-08-05 22:08:47 +0200179syn match shPattern "\<\S\+\())\)\@=" contained contains=shExSingleQuote,shSingleQuote,shExDoubleQuote,shDoubleQuote,shDeref
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000181" Subshells: {{{1
182" ==========
Bram Moolenaard960d762011-09-21 19:22:10 +0200183syn region shExpr transparent matchgroup=shExprRegion start="{" end="}" contains=@shExprList2 nextgroup=shMoreSpecial
184syn region shSubSh transparent matchgroup=shSubShRegion start="[^(]\zs(" end=")" contains=@shSubShList nextgroup=shMoreSpecial
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000186" Tests: {{{1
187"=======
Bram Moolenaar00a927d2010-05-14 23:24:24 +0200188syn region shExpr matchgroup=shRange start="\[" skip=+\\\\\|\\$\|\[+ end="\]" contains=@shTestList,shSpecial
Bram Moolenaar5c736222010-01-06 20:54:52 +0100189syn region shTest transparent matchgroup=shStatement start="\<test\s" skip=+\\\\\|\\$+ matchgroup=NONE end="[;&|]"me=e-1 end="$" contains=@shExprList1
Bram Moolenaar9964e462007-05-05 17:54:07 +0000190syn match shTestOpr contained "<=\|>=\|!=\|==\|-.\>\|-\(nt\|ot\|ef\|eq\|ne\|lt\|le\|gt\|ge\)\>\|[!<>]"
191syn match shTestOpr contained '=' skipwhite nextgroup=shTestDoubleQuote,shTestSingleQuote,shTestPattern
192syn match shTestPattern contained '\w\+'
Bram Moolenaard960d762011-09-21 19:22:10 +0200193syn match shTestDoubleQuote contained '\%(\%(\\\\\)*\\\)\@<!"[^"]*"'
Bram Moolenaar9964e462007-05-05 17:54:07 +0000194syn match shTestSingleQuote contained '\\.'
195syn match shTestSingleQuote contained "'[^']*'"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196if exists("b:is_kornshell") || exists("b:is_bash")
197 syn region shDblBrace matchgroup=Delimiter start="\[\[" skip=+\\\\\|\\$+ end="\]\]" contains=@shTestList
198 syn region shDblParen matchgroup=Delimiter start="((" skip=+\\\\\|\\$+ end="))" contains=@shTestList
199endif
200
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000201" Character Class In Range: {{{1
202" =========================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203syn match shCharClass contained "\[:\(backspace\|escape\|return\|xdigit\|alnum\|alpha\|blank\|cntrl\|digit\|graph\|lower\|print\|punct\|space\|upper\|tab\):\]"
204
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000205" Loops: do, if, while, until {{{1
206" ======
Bram Moolenaarc236c162008-07-13 17:41:49 +0000207if (g:sh_fold_enabled % (s:sh_fold_ifdofor * 2))/s:sh_fold_ifdofor
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000208 syn region shDo fold transparent matchgroup=shConditional start="\<do\>" matchgroup=shConditional end="\<done\>" contains=@shLoopList
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100209 syn region shIf fold transparent matchgroup=shConditional start="\<if\_s" matchgroup=shConditional skip=+-fi\>+ end="\<;\_s*then\>" end="\<fi\>" contains=@shIfList
Bram Moolenaarc236c162008-07-13 17:41:49 +0000210 syn region shFor fold matchgroup=shLoop start="\<for\_s" end="\<in\_s" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen skipwhite nextgroup=shCurlyIn
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000211else
212 syn region shDo transparent matchgroup=shConditional start="\<do\>" matchgroup=shConditional end="\<done\>" contains=@shLoopList
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100213 syn region shIf transparent matchgroup=shConditional start="\<if\_s" matchgroup=shConditional skip=+-fi\>+ end="\<;\_s*then\>" end="\<fi\>" contains=@shIfList
Bram Moolenaarc236c162008-07-13 17:41:49 +0000214 syn region shFor matchgroup=shLoop start="\<for\_s" end="\<in\>" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen skipwhite nextgroup=shCurlyIn
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000215endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaarc236c162008-07-13 17:41:49 +0000217 syn cluster shCaseList add=shRepeat
218 syn cluster shFunctionList add=shRepeat
219 syn region shRepeat matchgroup=shLoop start="\<while\_s" end="\<in\_s" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen,shDblBrace
220 syn region shRepeat matchgroup=shLoop start="\<until\_s" end="\<in\_s" end="\<do\>"me=e-2 contains=@shLoopList,shDblParen,shDblBrace
221 syn region shCaseEsac matchgroup=shConditional start="\<select\s" matchgroup=shConditional end="\<in\>" end="\<do\>" contains=@shLoopList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000223 syn region shRepeat matchgroup=shLoop start="\<while\_s" end="\<do\>"me=e-2 contains=@shLoopList
224 syn region shRepeat matchgroup=shLoop start="\<until\_s" end="\<do\>"me=e-2 contains=@shLoopList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225endif
Bram Moolenaar572cb562005-08-05 21:35:02 +0000226syn region shCurlyIn contained matchgroup=Delimiter start="{" end="}" contains=@shCurlyList
227syn match shComma contained ","
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000229" Case: case...esac {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230" ====
Bram Moolenaarc236c162008-07-13 17:41:49 +0000231syn match shCaseBar contained skipwhite "\(^\|[^\\]\)\(\\\\\)*\zs|" nextgroup=shCase,shCaseStart,shCaseBar,shComment,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232syn match shCaseStart contained skipwhite skipnl "(" nextgroup=shCase,shCaseBar
Bram Moolenaarc236c162008-07-13 17:41:49 +0000233if (g:sh_fold_enabled % (s:sh_fold_ifdofor * 2))/s:sh_fold_ifdofor
Bram Moolenaar5c736222010-01-06 20:54:52 +0100234 syn region shCase fold contained skipwhite skipnl matchgroup=shSnglCase start="\%(\\.\|[^#$()'" \t]\)\{-}\zs)" end=";;" end="esac"me=s-1 contains=@shCaseList nextgroup=shCaseStart,shCase,shComment
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000235 syn region shCaseEsac fold matchgroup=shConditional start="\<case\>" end="\<esac\>" contains=@shCaseEsacList
236else
Bram Moolenaar5c736222010-01-06 20:54:52 +0100237 syn region shCase contained skipwhite skipnl matchgroup=shSnglCase start="\%(\\.\|[^#$()'" \t]\)\{-}\zs)" end=";;" end="esac"me=s-1 contains=@shCaseList nextgroup=shCaseStart,shCase,shComment
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000238 syn region shCaseEsac matchgroup=shConditional start="\<case\>" end="\<esac\>" contains=@shCaseEsacList
239endif
Bram Moolenaardf177f62005-02-22 08:39:57 +0000240syn keyword shCaseIn contained skipwhite skipnl in nextgroup=shCase,shCaseStart,shCaseBar,shComment,shCaseExSingleQuote,shCaseSingleQuote,shCaseDoubleQuote
241if exists("b:is_bash")
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200242 syn region shCaseExSingleQuote matchgroup=shQuote start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial,shSpecial skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100243elseif !exists("g:sh_no_error")
Bram Moolenaardf177f62005-02-22 08:39:57 +0000244 syn region shCaseExSingleQuote matchgroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
245endif
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200246syn region shCaseSingleQuote matchgroup=shQuote start=+'+ end=+'+ contains=shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
247syn region shCaseDoubleQuote matchgroup=shQuote start=+"+ skip=+\\\\\|\\.+ end=+"+ contains=@shDblQuoteList,shStringSpecial skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248syn region shCaseCommandSub start=+`+ skip=+\\\\\|\\.+ end=+`+ contains=@shCommandSubList skipwhite skipnl nextgroup=shCaseBar contained
Bram Moolenaar5c736222010-01-06 20:54:52 +0100249syn region shCaseRange matchgroup=Delimiter start=+\[+ skip=+\\\\+ end=+]+ contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000251" Misc: {{{1
252"======
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253syn match shWrapLineOperator "\\$"
254syn region shCommandSub start="`" skip="\\\\\|\\." end="`" contains=@shCommandSubList
Bram Moolenaard960d762011-09-21 19:22:10 +0200255syn match shEscape contained '\\.' contains=@shCommandSubList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000257" $() and $(()): {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258" $(..) is not supported by sh (Bourne shell). However, apparently
259" some systems (HP?) have as their /bin/sh a (link to) Korn shell
260" (ie. Posix compliant shell). /bin/ksh should work for those
261" systems too, however, so the following syntax will flag $(..) as
262" an Error under /bin/sh. By consensus of vimdev'ers!
263if exists("b:is_kornshell") || exists("b:is_bash")
264 syn region shCommandSub matchgroup=shCmdSubRegion start="\$(" skip='\\\\\|\\.' end=")" contains=@shCommandSubList
Bram Moolenaarc236c162008-07-13 17:41:49 +0000265 syn region shArithmetic matchgroup=shArithRegion start="\$((" skip='\\\\\|\\.' end="))" contains=@shArithList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 syn match shSkipInitWS contained "^\s\+"
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100267elseif !exists("g:sh_no_error")
Bram Moolenaardf177f62005-02-22 08:39:57 +0000268 syn region shCommandSub matchgroup=Error start="\$(" end=")" contains=@shCommandSubList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269endif
270
271if exists("b:is_bash")
272 syn cluster shCommandSubList add=bashSpecialVariables,bashStatement
273 syn cluster shCaseList add=bashAdminStatement,bashStatement
Bram Moolenaard960d762011-09-21 19:22:10 +0200274 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 Moolenaar071d4272004-06-13 20:20:40 +0000275 syn keyword bashStatement chmod clear complete du egrep expr fgrep find gnufind gnugrep grep install less ls mkdir mv rm rmdir rpm sed sleep sort strip tail touch
276 syn keyword bashAdminStatement daemon killall killproc nice reload restart start status stop
277endif
278
279if exists("b:is_kornshell")
280 syn cluster shCommandSubList add=kshSpecialVariables,kshStatement
281 syn cluster shCaseList add=kshStatement
282 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
283 syn keyword kshStatement cat chmod clear cp du egrep expr fgrep find grep install killall less ls mkdir mv nice printenv rm rmdir sed sort strip stty tail touch tput
284endif
285
286syn match shSource "^\.\s"
287syn match shSource "\s\.\s"
Bram Moolenaar5c736222010-01-06 20:54:52 +0100288"syn region shColon start="^\s*:" end="$" end="\s#"me=e-2 contains=@shColonList
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100289"syn region shColon start="^\s*\zs:" end="$" end="\s#"me=e-2
290syn match shColon '^\s*\zs:'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000292" String And Character Constants: {{{1
293"================================
Bram Moolenaar9964e462007-05-05 17:54:07 +0000294syn match shNumber "-\=\<\d\+\>#\="
295syn match shCtrlSeq "\\\d\d\d\|\\[abcfnrtv0]" contained
Bram Moolenaardf177f62005-02-22 08:39:57 +0000296if exists("b:is_bash")
Bram Moolenaar5c736222010-01-06 20:54:52 +0100297 syn match shSpecial "\\\o\o\o\|\\x\x\x\|\\c[^"]\|\\[abefnrtv]" contained
Bram Moolenaardf177f62005-02-22 08:39:57 +0000298endif
299if exists("b:is_bash")
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200300 syn region shExSingleQuote matchgroup=shQuote start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial,shSpecial
Bram Moolenaare90ee312010-08-05 22:08:47 +0200301 syn region shExDoubleQuote matchgroup=shQuote start=+\$"+ skip=+\\\\\|\\.\|\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,shSpecial
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100302elseif !exists("g:sh_no_error")
Bram Moolenaar9964e462007-05-05 17:54:07 +0000303 syn region shExSingleQuote matchGroup=Error start=+\$'+ skip=+\\\\\|\\.+ end=+'+ contains=shStringSpecial
Bram Moolenaare90ee312010-08-05 22:08:47 +0200304 syn region shExDoubleQuote matchGroup=Error start=+\$"+ skip=+\\\\\|\\.+ end=+"+ contains=shStringSpecial
Bram Moolenaardf177f62005-02-22 08:39:57 +0000305endif
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200306syn region shSingleQuote matchgroup=shQuote start=+'+ end=+'+ contains=@Spell
Bram Moolenaard960d762011-09-21 19:22:10 +0200307syn region shDoubleQuote matchgroup=shQuote start=+\%(\%(\\\\\)*\\\)\@<!"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell
308"syn region shDoubleQuote matchgroup=shQuote start=+"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial,@Spell
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000309syn match shStringSpecial "[^[:print:] \t]" contained
Bram Moolenaar7263a772007-05-10 17:35:54 +0000310syn match shStringSpecial "\%(\\\\\)*\\[\\"'`$()#]"
Bram Moolenaar5c736222010-01-06 20:54:52 +0100311syn match shSpecial "[^\\]\zs\%(\\\\\)*\\[\\"'`$()#]" nextgroup=shMoreSpecial
Bram Moolenaar7263a772007-05-10 17:35:54 +0000312syn match shSpecial "^\%(\\\\\)*\\[\\"'`$()#]"
Bram Moolenaar5c736222010-01-06 20:54:52 +0100313syn match shMoreSpecial "\%(\\\\\)*\\[\\"'`$()#]" nextgroup=shMoreSpecial contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000315" Comments: {{{1
316"==========
Bram Moolenaar5c736222010-01-06 20:54:52 +0100317syn cluster shCommentGroup contains=shTodo,@Spell
318syn keyword shTodo contained COMBAK FIXME TODO XXX
319syn match shComment "^\s*\zs#.*$" contains=@shCommentGroup
320syn match shComment "\s\zs#.*$" contains=@shCommentGroup
321syn match shQuickComment contained "#.*$"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000323" Here Documents: {{{1
324" =========================================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325if version < 600
326 syn region shHereDoc matchgroup=shRedir start="<<\s*\**END[a-zA-Z_0-9]*\**" matchgroup=shRedir end="^END[a-zA-Z_0-9]*$" contains=@shDblQuoteList
327 syn region shHereDoc matchgroup=shRedir start="<<-\s*\**END[a-zA-Z_0-9]*\**" matchgroup=shRedir end="^\s*END[a-zA-Z_0-9]*$" contains=@shDblQuoteList
328 syn region shHereDoc matchgroup=shRedir start="<<\s*\**EOF\**" matchgroup=shRedir end="^EOF$" contains=@shDblQuoteList
329 syn region shHereDoc matchgroup=shRedir start="<<-\s*\**EOF\**" matchgroup=shRedir end="^\s*EOF$" contains=@shDblQuoteList
330 syn region shHereDoc matchgroup=shRedir start="<<\s*\**\.\**" matchgroup=shRedir end="^\.$" contains=@shDblQuoteList
331 syn region shHereDoc matchgroup=shRedir start="<<-\s*\**\.\**" matchgroup=shRedir end="^\s*\.$" contains=@shDblQuoteList
332
Bram Moolenaarc236c162008-07-13 17:41:49 +0000333elseif (g:sh_fold_enabled % (s:sh_fold_heredoc * 2))/s:sh_fold_heredoc
Bram Moolenaar9964e462007-05-05 17:54:07 +0000334 syn region shHereDoc matchgroup=shRedir fold start="<<\s*\z(\S*\)" matchgroup=shRedir end="^\z1\s*$" contains=@shDblQuoteList
Bram Moolenaarcd71fa32005-03-11 22:46:48 +0000335 syn region shHereDoc matchgroup=shRedir fold start="<<\s*\"\z(\S*\)\"" matchgroup=shRedir end="^\z1\s*$"
336 syn region shHereDoc matchgroup=shRedir fold start="<<\s*'\z(\S*\)'" matchgroup=shRedir end="^\z1\s*$"
337 syn region shHereDoc matchgroup=shRedir fold start="<<-\s*\z(\S*\)" matchgroup=shRedir end="^\s*\z1\s*$" contains=@shDblQuoteList
338 syn region shHereDoc matchgroup=shRedir fold start="<<-\s*\"\z(\S*\)\"" matchgroup=shRedir end="^\s*\z1\s*$"
339 syn region shHereDoc matchgroup=shRedir fold start="<<-\s*'\z(\S*\)'" matchgroup=shRedir end="^\s*\z1\s*$"
340 syn region shHereDoc matchgroup=shRedir fold start="<<\s*\\\_$\_s*\z(\S*\)" matchgroup=shRedir end="^\z1\s*$"
341 syn region shHereDoc matchgroup=shRedir fold start="<<\s*\\\_$\_s*\"\z(\S*\)\"" matchgroup=shRedir end="^\z1\s*$"
342 syn region shHereDoc matchgroup=shRedir fold start="<<-\s*\\\_$\_s*'\z(\S*\)'" matchgroup=shRedir end="^\s*\z1\s*$"
343 syn region shHereDoc matchgroup=shRedir fold start="<<-\s*\\\_$\_s*\z(\S*\)" matchgroup=shRedir end="^\s*\z1\s*$"
344 syn region shHereDoc matchgroup=shRedir fold start="<<-\s*\\\_$\_s*\"\z(\S*\)\"" matchgroup=shRedir end="^\s*\z1\s*$"
345 syn region shHereDoc matchgroup=shRedir fold start="<<\s*\\\_$\_s*'\z(\S*\)'" matchgroup=shRedir end="^\z1\s*$"
Bram Moolenaar9964e462007-05-05 17:54:07 +0000346 syn region shHereDoc matchgroup=shRedir fold start="<<\\\z(\S*\)" matchgroup=shRedir end="^\z1\s*$"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348else
Bram Moolenaarcd71fa32005-03-11 22:46:48 +0000349 syn region shHereDoc matchgroup=shRedir start="<<\s*\\\=\z(\S*\)" matchgroup=shRedir end="^\z1\s*$" contains=@shDblQuoteList
350 syn region shHereDoc matchgroup=shRedir start="<<\s*\"\z(\S*\)\"" matchgroup=shRedir end="^\z1\s*$"
351 syn region shHereDoc matchgroup=shRedir start="<<-\s*\z(\S*\)" matchgroup=shRedir end="^\s*\z1\s*$" contains=@shDblQuoteList
352 syn region shHereDoc matchgroup=shRedir start="<<-\s*'\z(\S*\)'" matchgroup=shRedir end="^\s*\z1\s*$"
353 syn region shHereDoc matchgroup=shRedir start="<<\s*'\z(\S*\)'" matchgroup=shRedir end="^\z1\s*$"
354 syn region shHereDoc matchgroup=shRedir start="<<-\s*\"\z(\S*\)\"" matchgroup=shRedir end="^\s*\z1\s*$"
355 syn region shHereDoc matchgroup=shRedir start="<<\s*\\\_$\_s*\z(\S*\)" matchgroup=shRedir end="^\z1\s*$"
356 syn region shHereDoc matchgroup=shRedir start="<<-\s*\\\_$\_s*\z(\S*\)" matchgroup=shRedir end="^\s*\z1\s*$"
357 syn region shHereDoc matchgroup=shRedir start="<<-\s*\\\_$\_s*'\z(\S*\)'" matchgroup=shRedir end="^\s*\z1\s*$"
358 syn region shHereDoc matchgroup=shRedir start="<<\s*\\\_$\_s*'\z(\S*\)'" matchgroup=shRedir end="^\z1\s*$"
359 syn region shHereDoc matchgroup=shRedir start="<<\s*\\\_$\_s*\"\z(\S*\)\"" matchgroup=shRedir end="^\z1\s*$"
360 syn region shHereDoc matchgroup=shRedir start="<<-\s*\\\_$\_s*\"\z(\S*\)\"" matchgroup=shRedir end="^\s*\z1\s*$"
Bram Moolenaar9964e462007-05-05 17:54:07 +0000361 syn region shHereDoc matchgroup=shRedir start="<<\\\z(\S*\)" matchgroup=shRedir end="^\z1\s*$"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362endif
363
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000364" Here Strings: {{{1
365" =============
Bram Moolenaard960d762011-09-21 19:22:10 +0200366" available for: bash; ksh (really should be ksh93 only) but not if its a posix
367if exists("b:is_bash") || (exists("b:is_kornshell") && !exists("g:is_posix"))
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000368 syn match shRedir "<<<"
369endif
370
371" Identifiers: {{{1
372"=============
Bram Moolenaarc236c162008-07-13 17:41:49 +0000373syn match shSetOption "\s\zs[-+][a-zA-Z0-9]\+\>" contained
374syn match shVariable "\<\([bwglsav]:\)\=[a-zA-Z0-9.!@_%+,]*\ze=" nextgroup=shSetIdentifier
Bram Moolenaare90ee312010-08-05 22:08:47 +0200375syn match shSetIdentifier "=" contained nextgroup=shPattern,shDeref,shDerefSimple,shDoubleQuote,shExDoubleQuote,shSingleQuote,shExSingleQuote
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376if exists("b:is_bash")
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200377 syn region shSetList oneline matchgroup=shSet start="\<\(declare\|typeset\|local\|export\|unset\)\>\ze[^/]" end="$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+#\|=" contains=@shIdList
378 syn region shSetList oneline matchgroup=shSet start="\<set\>\ze[^/]" end="\ze[;|)]\|$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]" contains=@shIdList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379elseif exists("b:is_kornshell")
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200380 syn region shSetList oneline matchgroup=shSet start="\<\(typeset\|export\|unset\)\>\ze[^/]" end="$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]" contains=@shIdList
381 syn region shSetList oneline matchgroup=shSet start="\<set\>\ze[^/]" end="$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]" contains=@shIdList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382else
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200383 syn region shSetList oneline matchgroup=shSet start="\<\(set\|export\|unset\)\>\ze[^/]" end="$" matchgroup=shSetListDelim end="\ze[}|);&]" matchgroup=NONE end="\ze\s\+[#=]" contains=@shIdList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384endif
385
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000386" Functions: {{{1
Bram Moolenaarc236c162008-07-13 17:41:49 +0000387if !exists("g:is_posix")
388 syn keyword shFunctionKey function skipwhite skipnl nextgroup=shFunctionTwo
389endif
390
391if exists("b:is_bash")
392 if (g:sh_fold_enabled % (s:sh_fold_functions * 2))/s:sh_fold_functions
393 syn region shFunctionOne fold matchgroup=shFunction start="^\s*\h[-a-zA-Z_0-9]*\s*()\_s*{" end="}" contains=@shFunctionList skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
394 syn region shFunctionTwo fold matchgroup=shFunction start="\h[-a-zA-Z_0-9]*\s*\%(()\)\=\_s*{" end="}" contains=shFunctionKey,@shFunctionList contained skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
395 else
396 syn region shFunctionOne matchgroup=shFunction start="^\s*\h[-a-zA-Z_0-9]*\s*()\_s*{" end="}" contains=@shFunctionList
397 syn region shFunctionTwo matchgroup=shFunction start="\h[-a-zA-Z_0-9]*\s*\%(()\)\=\_s*{" end="}" contains=shFunctionKey,@shFunctionList contained
398 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000400 if (g:sh_fold_enabled % (s:sh_fold_functions * 2))/s:sh_fold_functions
401 syn region shFunctionOne fold matchgroup=shFunction start="^\s*\h\w*\s*()\_s*{" end="}" contains=@shFunctionList skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
402 syn region shFunctionTwo fold matchgroup=shFunction start="\h\w*\s*\%(()\)\=\_s*{" end="}" contains=shFunctionKey,@shFunctionList contained skipwhite skipnl nextgroup=shFunctionStart,shQuickComment
403 else
404 syn region shFunctionOne matchgroup=shFunction start="^\s*\h\w*\s*()\_s*{" end="}" contains=@shFunctionList
405 syn region shFunctionTwo matchgroup=shFunction start="\h\w*\s*\%(()\)\=\_s*{" end="}" contains=shFunctionKey,@shFunctionList contained
406 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000409" Parameter Dereferencing: {{{1
410" ========================
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000411syn match shDerefSimple "\$\%(\h\w*\|\d\)"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412syn region shDeref matchgroup=PreProc start="\${" end="}" contains=@shDerefList,shDerefVarArray
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100413if !exists("g:sh_no_error")
414 syn match shDerefWordError "[^}$[]" contained
415endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416syn match shDerefSimple "\$[-#*@!?]"
417syn match shDerefSimple "\$\$"
418if exists("b:is_bash") || exists("b:is_kornshell")
419 syn region shDeref matchgroup=PreProc start="\${##\=" end="}" contains=@shDerefList
Bram Moolenaarc236c162008-07-13 17:41:49 +0000420 syn region shDeref matchgroup=PreProc start="\${\$\$" end="}" contains=@shDerefList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421endif
422
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000423" bash: ${!prefix*} and ${#parameter}: {{{1
424" ====================================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425if exists("b:is_bash")
426 syn region shDeref matchgroup=PreProc start="\${!" end="\*\=}" contains=@shDerefList,shDerefOp
427 syn match shDerefVar contained "{\@<=!\w\+" nextgroup=@shDerefVarList
428endif
429
430syn match shDerefSpecial contained "{\@<=[-*@?0]" nextgroup=shDerefOp,shDerefOpError
431syn match shDerefSpecial contained "\({[#!]\)\@<=[[:alnum:]*@_]\+" nextgroup=@shDerefVarList,shDerefOp
432syn match shDerefVar contained "{\@<=\w\+" nextgroup=@shDerefVarList
433
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000434" sh ksh bash : ${var[... ]...} array reference: {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435syn region shDerefVarArray contained matchgroup=shDeref start="\[" end="]" contains=@shCommandSubList nextgroup=shDerefOp,shDerefOpError
436
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000437" Special ${parameter OPERATOR word} handling: {{{1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438" sh ksh bash : ${parameter:-word} word is default value
439" sh ksh bash : ${parameter:=word} assign word as default value
440" sh ksh bash : ${parameter:?word} display word if parameter is null
441" sh ksh bash : ${parameter:+word} use word if parameter is not null, otherwise nothing
442" ksh bash : ${parameter#pattern} remove small left pattern
443" ksh bash : ${parameter##pattern} remove large left pattern
444" ksh bash : ${parameter%pattern} remove small right pattern
445" ksh bash : ${parameter%%pattern} remove large right pattern
Bram Moolenaard960d762011-09-21 19:22:10 +0200446" bash : ${parameter^pattern} Case modification
447" bash : ${parameter^^pattern} Case modification
448" bash : ${parameter,pattern} Case modification
449" bash : ${parameter,,pattern} Case modification
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450syn cluster shDerefPatternList contains=shDerefPattern,shDerefString
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100451if !exists("g:sh_no_error")
452 syn match shDerefOpError contained ":[[:punct:]]"
453endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454syn match shDerefOp contained ":\=[-=?]" nextgroup=@shDerefPatternList
455syn match shDerefOp contained ":\=+" nextgroup=@shDerefPatternList
456if exists("b:is_bash") || exists("b:is_kornshell")
457 syn match shDerefOp contained "#\{1,2}" nextgroup=@shDerefPatternList
458 syn match shDerefOp contained "%\{1,2}" nextgroup=@shDerefPatternList
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000459 syn match shDerefPattern contained "[^{}]\+" contains=shDeref,shDerefSimple,shDerefPattern,shDerefString,shCommandSub,shDerefEscape nextgroup=shDerefPattern
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 syn region shDerefPattern contained start="{" end="}" contains=shDeref,shDerefSimple,shDerefString,shCommandSub nextgroup=shDerefPattern
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000461 syn match shDerefEscape contained '\%(\\\\\)*\\.'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462endif
Bram Moolenaard960d762011-09-21 19:22:10 +0200463if exists("b:is_bash")
464 syn match shDerefOp contained "[,^]\{1,2}" nextgroup=@shDerefPatternList
465endif
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200466syn region shDerefString contained matchgroup=shDerefDelim start=+\%(\\\)\@<!'+ end=+'+ contains=shStringSpecial
467syn region shDerefString contained matchgroup=shDerefDelim start=+\%(\\\)\@<!"+ skip=+\\"+ end=+"+ contains=@shDblQuoteList,shStringSpecial
Bram Moolenaarc236c162008-07-13 17:41:49 +0000468syn match shDerefString contained "\\["']" nextgroup=shDerefPattern
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470if exists("b:is_bash")
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000471 " bash : ${parameter:offset}
472 " bash : ${parameter:offset:length}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 syn region shDerefOp contained start=":[$[:alnum:]_]"me=e-1 end=":"me=e-1 end="}"me=e-1 contains=@shCommandSubList nextgroup=shDerefPOL
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000474 syn match shDerefPOL contained ":[^}]\+" contains=@shCommandSubList
475
476 " bash : ${parameter//pattern/string}
477 " bash : ${parameter//pattern}
478 syn match shDerefPPS contained '/\{1,2}' nextgroup=shDerefPPSleft
Bram Moolenaara5792f52005-11-23 21:25:05 +0000479 syn region shDerefPPSleft contained start='.' skip=@\%(\\\)\/@ matchgroup=shDerefOp end='/' end='\ze}' nextgroup=shDerefPPSright contains=@shCommandSubList
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000480 syn region shDerefPPSright contained start='.' end='\ze}' contains=@shCommandSubList
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481endif
482
Bram Moolenaarc236c162008-07-13 17:41:49 +0000483" Arithmetic Parenthesized Expressions: {{{1
Bram Moolenaard960d762011-09-21 19:22:10 +0200484syn region shParen matchgroup=shArithRegion start='(\%(\ze[^(]\|$\)' end=')' contains=@shArithParenList
Bram Moolenaarc236c162008-07-13 17:41:49 +0000485
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000486" Useful sh Keywords: {{{1
487" ===================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488syn keyword shStatement break cd chdir continue eval exec exit kill newgrp pwd read readonly return shift test trap ulimit umask wait
489syn keyword shConditional contained elif else then
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100490if !exists("g:sh_no_error")
491 syn keyword shCondError elif else then
492endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000494" Useful ksh Keywords: {{{1
495" ====================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496if exists("b:is_kornshell") || exists("b:is_bash")
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200497 syn keyword shStatement autoload bg false fc fg functions getopts hash history integer jobs let nohup printf r stop suspend times true type unalias whence
Bram Moolenaarc236c162008-07-13 17:41:49 +0000498 if exists("g:is_posix")
499 syn keyword shStatement command
500 else
501 syn keyword shStatement time
502 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000504" Useful bash Keywords: {{{1
505" =====================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 if exists("b:is_bash")
507 syn keyword shStatement bind builtin dirs disown enable help local logout popd pushd shopt source
508 else
509 syn keyword shStatement login newgrp
510 endif
511endif
512
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000513" Synchronization: {{{1
514" ================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515if !exists("sh_minlines")
516 let sh_minlines = 200
517endif
518if !exists("sh_maxlines")
519 let sh_maxlines = 2 * sh_minlines
520endif
521exec "syn sync minlines=" . sh_minlines . " maxlines=" . sh_maxlines
522syn sync match shCaseEsacSync grouphere shCaseEsac "\<case\>"
523syn sync match shCaseEsacSync groupthere shCaseEsac "\<esac\>"
524syn sync match shDoSync grouphere shDo "\<do\>"
525syn sync match shDoSync groupthere shDo "\<done\>"
526syn sync match shForSync grouphere shFor "\<for\>"
527syn sync match shForSync groupthere shFor "\<in\>"
528syn sync match shIfSync grouphere shIf "\<if\>"
529syn sync match shIfSync groupthere shIf "\<fi\>"
530syn sync match shUntilSync grouphere shRepeat "\<until\>"
531syn sync match shWhileSync grouphere shRepeat "\<while\>"
532
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000533" Default Highlighting: {{{1
534" =====================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535hi def link shArithRegion shShellVariables
Bram Moolenaardf177f62005-02-22 08:39:57 +0000536hi def link shBeginHere shRedir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537hi def link shCaseBar shConditional
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538hi def link shCaseCommandSub shCommandSub
539hi def link shCaseDoubleQuote shDoubleQuote
Bram Moolenaardf177f62005-02-22 08:39:57 +0000540hi def link shCaseIn shConditional
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200541hi def link shQuote shOperator
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542hi def link shCaseSingleQuote shSingleQuote
543hi def link shCaseStart shConditional
544hi def link shCmdSubRegion shShellVariables
Bram Moolenaar5c736222010-01-06 20:54:52 +0100545hi def link shColon shComment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546hi def link shDerefOp shOperator
Bram Moolenaardf177f62005-02-22 08:39:57 +0000547hi def link shDerefPOL shDerefOp
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000548hi def link shDerefPPS shDerefOp
Bram Moolenaardf177f62005-02-22 08:39:57 +0000549hi def link shDeref shShellVariables
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200550hi def link shDerefDelim shOperator
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551hi def link shDerefSimple shDeref
552hi def link shDerefSpecial shDeref
553hi def link shDerefString shDoubleQuote
Bram Moolenaardf177f62005-02-22 08:39:57 +0000554hi def link shDerefVar shDeref
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555hi def link shDoubleQuote shString
556hi def link shEcho shString
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200557hi def link shEchoDelim shOperator
Bram Moolenaarc236c162008-07-13 17:41:49 +0000558hi def link shEchoQuote shString
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559hi def link shEmbeddedEcho shString
Bram Moolenaarc236c162008-07-13 17:41:49 +0000560hi def link shEscape shCommandSub
Bram Moolenaare90ee312010-08-05 22:08:47 +0200561hi def link shExDoubleQuote shDoubleQuote
Bram Moolenaardf177f62005-02-22 08:39:57 +0000562hi def link shExSingleQuote shSingleQuote
Bram Moolenaarc236c162008-07-13 17:41:49 +0000563hi def link shFunction Function
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564hi def link shHereDoc shString
Bram Moolenaardf177f62005-02-22 08:39:57 +0000565hi def link shHerePayload shHereDoc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566hi def link shLoop shStatement
Bram Moolenaar5c736222010-01-06 20:54:52 +0100567hi def link shMoreSpecial shSpecial
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568hi def link shOption shCommandSub
569hi def link shPattern shString
Bram Moolenaarc236c162008-07-13 17:41:49 +0000570hi def link shParen shArithmetic
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571hi def link shPosnParm shShellVariables
Bram Moolenaarc236c162008-07-13 17:41:49 +0000572hi def link shQuickComment shComment
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573hi def link shRange shOperator
574hi def link shRedir shOperator
Bram Moolenaar4b22cdb2010-08-02 22:12:46 +0200575hi def link shSetListDelim shOperator
Bram Moolenaarc236c162008-07-13 17:41:49 +0000576hi def link shSetOption shOption
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577hi def link shSingleQuote shString
578hi def link shSource shOperator
579hi def link shStringSpecial shSpecial
580hi def link shSubShRegion shOperator
581hi def link shTestOpr shConditional
Bram Moolenaar9964e462007-05-05 17:54:07 +0000582hi def link shTestPattern shString
583hi def link shTestDoubleQuote shString
584hi def link shTestSingleQuote shString
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585hi def link shVariable shSetList
586hi def link shWrapLineOperator shOperator
587
588if exists("b:is_bash")
589 hi def link bashAdminStatement shStatement
590 hi def link bashSpecialVariables shShellVariables
591 hi def link bashStatement shStatement
Bram Moolenaarcd71fa32005-03-11 22:46:48 +0000592 hi def link shFunctionParen Delimiter
593 hi def link shFunctionDelim Delimiter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594endif
595if exists("b:is_kornshell")
596 hi def link kshSpecialVariables shShellVariables
597 hi def link kshStatement shStatement
Bram Moolenaarcd71fa32005-03-11 22:46:48 +0000598 hi def link shFunctionParen Delimiter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599endif
600
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100601if !exists("g:sh_no_error")
602 hi def link shCaseError Error
603 hi def link shCondError Error
604 hi def link shCurlyError Error
605 hi def link shDerefError Error
606 hi def link shDerefOpError Error
607 hi def link shDerefWordError Error
608 hi def link shDoError Error
609 hi def link shEsacError Error
610 hi def link shIfError Error
611 hi def link shInError Error
612 hi def link shParenError Error
613 hi def link shTestError Error
614 if exists("b:is_kornshell")
615 hi def link shDTestError Error
616 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617endif
618
619hi def link shArithmetic Special
620hi def link shCharClass Identifier
621hi def link shSnglCase Statement
622hi def link shCommandSub Special
623hi def link shComment Comment
624hi def link shConditional Conditional
Bram Moolenaar9964e462007-05-05 17:54:07 +0000625hi def link shCtrlSeq Special
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626hi def link shExprRegion Delimiter
Bram Moolenaarcd71fa32005-03-11 22:46:48 +0000627hi def link shFunctionKey Function
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628hi def link shFunctionName Function
629hi def link shNumber Number
630hi def link shOperator Operator
631hi def link shRepeat Repeat
632hi def link shSet Statement
633hi def link shSetList Identifier
634hi def link shShellVariables PreProc
635hi def link shSpecial Special
636hi def link shStatement Statement
637hi def link shString String
638hi def link shTodo Todo
639hi def link shAlias Identifier
640
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000641" Set Current Syntax: {{{1
642" ===================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643if exists("b:is_bash")
644 let b:current_syntax = "bash"
645elseif exists("b:is_kornshell")
646 let b:current_syntax = "ksh"
647else
648 let b:current_syntax = "sh"
649endif
650
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000651" vim: ts=16 fdm=marker