aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid B. Lamkins <dlamkins@galois.com>2015-11-10 12:16:15 +0100
committerMarc André Tanner <mat@brain-dump.org>2015-11-10 12:25:43 +0100
commit419eb24192cfb266b8eb40825ce019fe36f5c82e (patch)
treec139c3c9c25c17c958c12f64a3044f59251fb4a2
parent0d86b08e743d3194f5eb300db94a8dc2d86332f8 (diff)
downloadvis-419eb24192cfb266b8eb40825ce019fe36f5c82e.tar.gz
vis-419eb24192cfb266b8eb40825ce019fe36f5c82e.tar.xz
lexers: fix color specification in diff lexer
Closes #102
-rw-r--r--lexers/diff.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lexers/diff.lua b/lexers/diff.lua
index ee680aa..24f7ff2 100644
--- a/lexers/diff.lua
+++ b/lexers/diff.lua
@@ -34,9 +34,9 @@ M._rules = {
M._tokenstyles = {
header = l.STYLE_COMMENT,
- addition = 'fore:'..l.colors.green,
- deletion = 'fore:'..l.colors.red,
- change = 'fore:'..l.colors.yellow,
+ addition = 'fore:green',
+ deletion = 'fore:red',
+ change = 'fore:yellow',
}
M._LEXBYLINE = true