6873:47804e8cde27 | 6874:5a3a39442711 |
---|---|
26 """ | 26 """ |
27 QsciLexerMatlab.__init__(self, parent) | 27 QsciLexerMatlab.__init__(self, parent) |
28 Lexer.__init__(self) | 28 Lexer.__init__(self) |
29 | 29 |
30 self.commentString = "%~" | 30 self.commentString = "%~" |
31 | |
32 self.keywordSetDescriptions = [ | |
33 self.tr("Keywords"), | |
34 ] | |
31 | 35 |
32 def isCommentStyle(self, style): | 36 def isCommentStyle(self, style): |
33 """ | 37 """ |
34 Public method to check, if a style is a comment style. | 38 Public method to check, if a style is a comment style. |
35 | 39 |