QScintilla/Lexers/LexerCPP.py

changeset 130
fcce4cc20d95
parent 13
1af94a91f439
child 167
7508e44f4853
equal deleted inserted replaced
129:3bc474738bf3 130:fcce4cc20d95
82 """ 82 """
83 return style in [QsciLexerCPP.DoubleQuotedString, 83 return style in [QsciLexerCPP.DoubleQuotedString,
84 QsciLexerCPP.SingleQuotedString, 84 QsciLexerCPP.SingleQuotedString,
85 QsciLexerCPP.UnclosedString, 85 QsciLexerCPP.UnclosedString,
86 QsciLexerCPP.VerbatimString] 86 QsciLexerCPP.VerbatimString]
87
88 def defaultKeywords(self, kwSet):
89 """
90 Public method to get the default keywords.
91
92 @param kwSet number of the keyword set (integer)
93 """
94 return QsciLexerCPP.keywords(self, kwSet)

eric ide

mercurial