about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-30 20:56:44 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-30 20:56:44 -0700
commitfbf0536d3d7e90425154053961af99a8b5146600 (patch)
tree4a6753390965ed43b68233106fc0f7bb23b69b70
parent1fbebe73ce457733c8c1352ec807346a038f373d (diff)
downloadmu-fbf0536d3d7e90425154053961af99a8b5146600.tar.gz
1903
-rw-r--r--mu.vim5
1 files changed, 5 insertions, 0 deletions
diff --git a/mu.vim b/mu.vim
index 49c322cc..e7c188da 100644
--- a/mu.vim
+++ b/mu.vim
@@ -47,6 +47,11 @@ highlight link muNumber Constant
 syntax match muLabel "^\s\+[^ 0-9a-zA-Z{}\[\]][^ ]*\s*$"
 syntax match muLabel %[^ ]\+:label/\?[^ ,]*%
 highlight link muLabel Constant
+syntax match muLiteral %[^ ]\+:type/\?[^ ,]*%
+syntax match muLiteral %[^ ]\+:offset/\?[^ ,]*%
+syntax match muLiteral %[^ ]\+:variant/\?[^ ,]*%
+syntax match muLiteral %[^ ]\+:recipe/\?[^ ,]*%
+highlight link muLiteral Constant
 syntax keyword muKeyword default-space global-space new-default-space local-scope next-ingredient ingredient | highlight link muKeyword Constant
 
 syntax match muDelimiter "[{}]" | highlight link muDelimiter Delimiter