summaryrefslogtreecommitdiff
path: root/context/data/scite/lexers/themes
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2011-09-17 17:20:13 +0300
committerMarius <mariausol@gmail.com>2011-09-17 17:20:13 +0300
commit6a1645d499e26ab02b365dd4b93da771815d8c0d (patch)
tree35f096770997609a39a2d777421b85c1e45504e8 /context/data/scite/lexers/themes
parent32956188684f3f0bd1cc077a6870fdd57fea0cfc (diff)
downloadcontext-6a1645d499e26ab02b365dd4b93da771815d8c0d.tar.gz
beta 2011.09.17 15:56
Diffstat (limited to 'context/data/scite/lexers/themes')
-rw-r--r--context/data/scite/lexers/themes/scite-context-theme.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/context/data/scite/lexers/themes/scite-context-theme.lua b/context/data/scite/lexers/themes/scite-context-theme.lua
index 360a5d435..94f623cd8 100644
--- a/context/data/scite/lexers/themes/scite-context-theme.lua
+++ b/context/data/scite/lexers/themes/scite-context-theme.lua
@@ -70,7 +70,9 @@ style_char = style { fore = colors.magenta }
style_class = style { fore = colors.black, bold = true }
style_constant = style { fore = colors.cyan, bold = true }
style_definition = style { fore = colors.black, bold = true }
+style_okay = style { fore = colors.dark }
style_error = style { fore = colors.red }
+style_warning = style { fore = colors.orange }
style_function = style { fore = colors.black, bold = true }
style_operator = style { fore = colors.blue }
style_preproc = style { fore = colors.yellow, bold = true }
@@ -86,6 +88,8 @@ style_indentguide = style { fore = colors.linepanel, back = colors.white
style_calltip = style { fore = colors.white, back = colors.tippanel }
style_controlchar = style_nothing
+-- only bold seems to work
+
lexer.context.styles = {
-- ["whitespace"] = style_whitespace,
@@ -108,6 +112,10 @@ lexer.context.styles = {
["extra"] = style { fore = colors.yellow },
["quote"] = style { fore = colors.blue, bold = true },
+ ["okay"] = style_okay,
+ ["warning"] = style_warning,
+ ["error"] = style_error,
+
}
local styleset = { }