Skip to content
Snippets Groups Projects
Commit 5cefed72 authored by Henning Glawe's avatar Henning Glawe
Browse files

highlight literals in magenta

parent e9783309
Branches
Tags
No related merge requests found
...@@ -109,7 +109,7 @@ class FploInputParser(object): ...@@ -109,7 +109,7 @@ class FploInputParser(object):
# match literals # match literals
m = cRE_literal.match(line, pos_in_line) m = cRE_literal.match(line, pos_in_line)
if m is not None: if m is not None:
self.annotate(m.group(), ANSI.BG_YELLOW) self.annotate(m.group(), ANSI.FG_MAGENTA)
return m.end() return m.end()
# match operators # match operators
m = cRE_operator.match(line, pos_in_line) m = cRE_operator.match(line, pos_in_line)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment