QScintilla/Lexers/LexerTCL.py

changeset 6874
5a3a39442711
parent 6645
ad476851d7e0
equal deleted inserted replaced
6873:47804e8cde27 6874:5a3a39442711
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 """

eric ide

mercurial