QScintilla/Lexers/LexerCSS.py

changeset 130
fcce4cc20d95
parent 13
1af94a91f439
child 167
7508e44f4853
equal deleted inserted replaced
129:3bc474738bf3 130:fcce4cc20d95
52 52
53 @return flag indicating a string style (boolean) 53 @return flag indicating a string style (boolean)
54 """ 54 """
55 return style in [QsciLexerCSS.DoubleQuotedString, 55 return style in [QsciLexerCSS.DoubleQuotedString,
56 QsciLexerCSS.SingleQuotedString] 56 QsciLexerCSS.SingleQuotedString]
57
58 def defaultKeywords(self, kwSet):
59 """
60 Public method to get the default keywords.
61
62 @param kwSet number of the keyword set (integer)
63 """
64 return QsciLexerCSS.keywords(self, kwSet)

eric ide

mercurial