QScintilla/Lexers/LexerCMake.py

changeset 130
fcce4cc20d95
parent 13
1af94a91f439
child 167
7508e44f4853
equal deleted inserted replaced
129:3bc474738bf3 130:fcce4cc20d95
46 Public method to check, if a style is a string style. 46 Public method to check, if a style is a string style.
47 47
48 @return flag indicating a string style (boolean) 48 @return flag indicating a string style (boolean)
49 """ 49 """
50 return style in [QsciLexerCMake.String] 50 return style in [QsciLexerCMake.String]
51
52 def defaultKeywords(self, kwSet):
53 """
54 Public method to get the default keywords.
55
56 @param kwSet number of the keyword set (integer)
57 """
58 return QsciLexerCMake.keywords(self, kwSet)

eric ide

mercurial