diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-10 12:18:20 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-10 12:33:22 -0700 |
commit | e3894819b3d3a7809b63a76cfdafa4c455eb9a6c (patch) | |
tree | 36ea1fcc0272858c8596e2c4b94b800aa865d01a /mu.vim | |
parent | be16deb0f94a283099652a82c9a5ea10abb86b67 (diff) | |
download | mu-e3894819b3d3a7809b63a76cfdafa4c455eb9a6c.tar.gz |
1331
Diffstat (limited to 'mu.vim')
-rw-r--r-- | mu.vim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mu.vim b/mu.vim index a973fc1a..2dda5523 100644 --- a/mu.vim +++ b/mu.vim @@ -28,10 +28,12 @@ set comments+=n:# syntax match CommentedCode "#? .*" let b:cmt_head = "#? " -syntax region muString start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=@Spell +" don't match '[' at end of line, that's usually start of code +syntax region muString start=+\[[^\]]+ skip=+\\\\+ end=+\]+ +syntax match muString "\[\]" highlight link muString String -syntax match muDelimiter "[{}\[\]]" | highlight link muDelimiter Delimiter +syntax match muDelimiter "[{}]" | highlight link muDelimiter Delimiter syntax match muLabel " [^a-zA-Z0-9 \[][a-zA-Z0-9-]\+" | highlight link muLabel Function syntax match muAssign " <- " | highlight link muAssign SpecialChar syntax match muAssign "\<raw\>" |