Fixed highlighting of string interpolations.

This commit is contained in:
Bruce Hill 2017-11-13 15:10:51 -08:00
parent 72a18447c3
commit dbbbdffb40

View File

@ -19,6 +19,9 @@ hi nomsuComment ctermfg=DarkBlue
hi def link nomsuComment Comment
syn region nomsuParenGroup start=/(/ end=/)/ contains=@nomsuAll
hi nomsuParenGroup ctermfg=Yellow
hi def link nomsuParens Delimiter
syn match nomsuLongStringStart /"\.\."/ contains=nomsuIndentor contained
hi nomsuLongStringStart ctermfg=Yellow
syn match nomsuStringPipe /|/ contained
@ -65,7 +68,7 @@ syn match nomsuDotDot /\.\./
hi def link nomsuDotDot Special
hi nomsuDotDot ctermfg=DarkGray
syn match nomsuDelim /[,;()\[\]]/
syn match nomsuDelim /[,;\[\]{}]/
hi nomsuDelim ctermfg=Yellow
hi def link nomsuDelim Delimiter
@ -73,8 +76,9 @@ syn match nomsuThunk /:/
hi nomsuThunk ctermfg=Yellow
hi def link nomsuThunk Structure
syn cluster nomsuAll contains=nomsuString,nomsuLongString,nomsuComment,nomsuOneLineComment,
\ nomsuVar,nomsuNumber,nomsuDelim,nomsuThunk,nomsuDotDot,nomsuWord,nomsuOpWord
syn cluster nomsuAll contains=nomsuParenGroup,nomsuString,nomsuLongString,nomsuComment,nomsuOneLineComment,
\ nomsuVar,nomsuNumber,nomsuDelim,nomsuThunk,nomsuDotDot,nomsuWord,
\ nomsuOpWord
if !exists('b:current_syntax')
let b:current_syntax = 'nomsu'