From 5cefed728e0dd2b788dd8d35eae1610ca0b8429a Mon Sep 17 00:00:00 2001 From: Henning Glawe <glaweh@debian.org> Date: Fri, 28 Oct 2016 11:29:55 +0200 Subject: [PATCH] highlight literals in magenta --- parser/parser-fplo/FploInputParser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/parser-fplo/FploInputParser.py b/parser/parser-fplo/FploInputParser.py index d01915a..46f3a67 100755 --- a/parser/parser-fplo/FploInputParser.py +++ b/parser/parser-fplo/FploInputParser.py @@ -109,7 +109,7 @@ class FploInputParser(object): # match literals m = cRE_literal.match(line, pos_in_line) if m is not None: - self.annotate(m.group(), ANSI.BG_YELLOW) + self.annotate(m.group(), ANSI.FG_MAGENTA) return m.end() # match operators m = cRE_operator.match(line, pos_in_line) -- GitLab