diff options
Diffstat (limited to 'src/LexLua.cxx')
| -rw-r--r-- | src/LexLua.cxx | 12 | 
1 files changed, 11 insertions, 1 deletions
| diff --git a/src/LexLua.cxx b/src/LexLua.cxx index b7920ef20..159bc1585 100644 --- a/src/LexLua.cxx +++ b/src/LexLua.cxx @@ -297,4 +297,14 @@ static void FoldLuaDoc(unsigned int startPos, int length, int /* initStyle */, W  	styler.SetLevel(lineCurrent, levelPrev | flagsNext);  } -LexerModule lmLua(SCLEX_LUA, ColouriseLuaDoc, "lua", FoldLuaDoc); +static const char * const luaWordListDesc[] = { +	"Keywords", +	"Basic functions", +	"String & math functions", +	"I/O & system facilities", +	"XXX", +	"XXX", +	0 +}; + +LexerModule lmLua(SCLEX_LUA, ColouriseLuaDoc, "lua", FoldLuaDoc, luaWordListDesc); | 
