aboutsummaryrefslogtreecommitdiff
path: root/themes/scite/lexer.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2010-11-30 19:45:47 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2010-11-30 19:45:47 -0500
commit6c1afd75fc048e65cef5bfdbe68c79a082bdad43 (patch)
tree24762aa32430ca2eeb71b9c344807bb190ef6c62 /themes/scite/lexer.lua
parentcd23ca3323ce3ade5e83c20bb4d921dc7d45639a (diff)
downloadtextadept-6c1afd75fc048e65cef5bfdbe68c79a082bdad43.tar.gz
textadept-6c1afd75fc048e65cef5bfdbe68c79a082bdad43.zip
Added more options for themes.
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'),