diff options
author | 2010-11-30 19:45:47 -0500 | |
---|---|---|
committer | 2010-11-30 19:45:47 -0500 | |
commit | 6c1afd75fc048e65cef5bfdbe68c79a082bdad43 (patch) | |
tree | 24762aa32430ca2eeb71b9c344807bb190ef6c62 /themes/scite/lexer.lua | |
parent | cd23ca3323ce3ade5e83c20bb4d921dc7d45639a (diff) | |
download | textadept-6c1afd75fc048e65cef5bfdbe68c79a082bdad43.tar.gz textadept-6c1afd75fc048e65cef5bfdbe68c79a082bdad43.zip |
Added more options for themes.
Diffstat (limited to 'themes/scite/lexer.lua')
-rw-r--r-- | themes/scite/lexer.lua | 6 |
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'), |