QScintilla/Lexers/LexerLua.py

changeset 130
fcce4cc20d95
parent 13
1af94a91f439
child 167
7508e44f4853
equal deleted inserted replaced
129:3bc474738bf3 130:fcce4cc20d95
57 @return flag indicating a string style (boolean) 57 @return flag indicating a string style (boolean)
58 """ 58 """
59 return style in [QsciLexerLua.String, 59 return style in [QsciLexerLua.String,
60 QsciLexerLua.LiteralString, 60 QsciLexerLua.LiteralString,
61 QsciLexerLua.UnclosedString] 61 QsciLexerLua.UnclosedString]
62
63 def defaultKeywords(self, kwSet):
64 """
65 Public method to get the default keywords.
66
67 @param kwSet number of the keyword set (integer)
68 """
69 return QsciLexerLua.keywords(self, kwSet)

eric ide

mercurial