27 """ |
27 """ |
28 QsciLexerCMake.__init__(self, parent) |
28 QsciLexerCMake.__init__(self, parent) |
29 Lexer.__init__(self) |
29 Lexer.__init__(self) |
30 |
30 |
31 self.commentString = "#" |
31 self.commentString = "#" |
|
32 |
|
33 self.keywordSetDescriptions = [ |
|
34 self.tr("Commands"), |
|
35 self.tr("Parameters"), |
|
36 self.tr("User defined"), |
|
37 ] |
32 |
38 |
33 def initProperties(self): |
39 def initProperties(self): |
34 """ |
40 """ |
35 Public slot to initialize the properties. |
41 Public slot to initialize the properties. |
36 """ |
42 """ |