Clean up proposal 133

This commit is contained in:
str4d
2017-04-07 10:17:31 +00:00
parent e6b7d972c6
commit 82718f86e8
2 changed files with 36 additions and 17 deletions

View File

@ -22,6 +22,7 @@ class DataSpecLexer(RegexLexer):
(r'(\s*)([0-9]+)(\+)?', bygroups(Text, Number, Punctuation)),
(r'(-)([0-9]+)', bygroups(Punctuation, Number)),
(r'(\s*)(->|<=|>=|\*|\^)', bygroups(Text, Operator)),
(r'(\s*)([\w=]*)(\{[\w]+\})', bygroups(Text, Text, Name.Tag)),
(r'(\s*)([\w()-=\'<>?]+)', bygroups(Text, Comment)),
],
'boundary': [