28 """ |
28 """ |
29 QsciLexerTCL.__init__(self, parent) |
29 QsciLexerTCL.__init__(self, parent) |
30 Lexer.__init__(self) |
30 Lexer.__init__(self) |
31 |
31 |
32 self.commentString = "#" |
32 self.commentString = "#" |
|
33 |
|
34 self.keywordSetDescriptions = [ |
|
35 self.tr("TCL Keywords"), |
|
36 self.tr("TK Keywords"), |
|
37 self.tr("iTCL Keywords"), |
|
38 self.tr("TK Commands"), |
|
39 self.tr("expand"), |
|
40 self.tr("User defined 1"), |
|
41 self.tr("User defined 2"), |
|
42 self.tr("User defined 3"), |
|
43 self.tr("User defined 4"), |
|
44 ] |
33 |
45 |
34 def initProperties(self): |
46 def initProperties(self): |
35 """ |
47 """ |
36 Public slot to initialize the properties. |
48 Public slot to initialize the properties. |
37 """ |
49 """ |