aboutsummaryrefslogtreecommitdiff
path: root/themes/scite/lexer.lua
diff options
context:
space:
mode:
Diffstat (limited to 'themes/scite/lexer.lua')
-rw-r--r--themes/scite/lexer.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/themes/scite/lexer.lua b/themes/scite/lexer.lua
index 2e45a8b4..2614040b 100644
--- a/themes/scite/lexer.lua
+++ b/themes/scite/lexer.lua
@@ -1,9 +1,13 @@
-- Copyright 2007-2010 Mitchell mitchell<att>caladbolg.net. See LICENSE.
-- SciTE lexer theme for Textadept.
+-- Please note this theme is in a separate Lua state than Textadept's main one.
+-- This means the global variables like 'buffer', 'view', and 'gui' are not
+-- available here. Only the variables in the 'lexer' module are.
+
module('lexer', package.seeall)
-lexer.colors = {
+colors = {
green = color('00', '7F', '00'),
blue = color('00', '00', '7F'),
red = color('7F', '00', '00'),