about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-12-06 08:14:03 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-12-06 08:14:09 -0800
commit650a201d96de650fac3c29f886f100eb7a1c7539 (patch)
tree7de60ac403d743d6e7bb37c6ab384a35593584a2
parent07c594ebddbbe3fef8ba25fef19980c3e7e5f164 (diff)
downloadmu-650a201d96de650fac3c29f886f100eb7a1c7539.tar.gz
3702
Commands like '$exit' shouldn't look like labels.
-rw-r--r--mu.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/mu.vim b/mu.vim
index 749579ff..3d5f898f 100644
--- a/mu.vim
+++ b/mu.vim
@@ -45,7 +45,7 @@ highlight link muScreen muString
 syntax match muLiteral %[^ ]\+:literal/[^ ,]*\|[^ ]\+:literal\>%
 syntax match muLiteral %\<[0-9-]\?[0-9]\+/[^ ,]*%
 syntax match muLiteral % [0-9-]\?[0-9]\+[, ]\@=\| [0-9-]\?[0-9]\+$%
-syntax match muLiteral "^\s\+[^ 0-9a-zA-Z{}#\[\]][^ ]*\s*$"
+syntax match muLiteral "^\s\+[^ 0-9a-zA-Z{}$#\[\]][^ ]*\s*$"
 " labels
 syntax match muLiteral %[^ ]\+:label/[^ ,]*\|[^ ]\+:label\>%
 " other literal types