Remove shoutEnvValue from contains list

This commit is contained in:
Chris Wanstrath 2026-03-14 13:16:17 -07:00
parent ddd69e375f
commit dad4c89981

View File

@ -9,7 +9,7 @@ endif
syn match shoutDirectiveKey /^@env\s/ contained syn match shoutDirectiveKey /^@env\s/ contained
syn match shoutDirectiveKey /^@setup\s/ contained syn match shoutDirectiveKey /^@setup\s/ contained
syn match shoutDirectiveKey /^@teardown\s/ contained syn match shoutDirectiveKey /^@teardown\s/ contained
syn match shoutEnvDirective /^@env\s\+\S\+=.*$/ contains=shoutDirectiveKey,shoutEnvName,shoutEnvValue syn match shoutEnvDirective /^@env\s\+\S\+=.*$/ contains=shoutDirectiveKey,shoutEnvName
syn match shoutEnvName /\S\+\ze=/ contained nextgroup=shoutEnvEquals syn match shoutEnvName /\S\+\ze=/ contained nextgroup=shoutEnvEquals
syn match shoutEnvEquals /=/ contained nextgroup=shoutEnvValue syn match shoutEnvEquals /=/ contained nextgroup=shoutEnvValue
syn match shoutEnvValue /.*$/ contained syn match shoutEnvValue /.*$/ contained