diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-12-06 08:14:03 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-12-06 08:14:09 -0800 |
commit | 650a201d96de650fac3c29f886f100eb7a1c7539 (patch) | |
tree | 7de60ac403d743d6e7bb37c6ab384a35593584a2 | |
parent | 07c594ebddbbe3fef8ba25fef19980c3e7e5f164 (diff) | |
download | mu-650a201d96de650fac3c29f886f100eb7a1c7539.tar.gz |
3702
Commands like '$exit' shouldn't look like labels.
-rw-r--r-- | mu.vim | 2 |
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 |