QScintilla/Lexers/LexerVHDL.py

changeset 6874
5a3a39442711
parent 6645
ad476851d7e0
equal deleted inserted replaced
6873:47804e8cde27 6874:5a3a39442711
27 """ 27 """
28 QsciLexerVHDL.__init__(self, parent) 28 QsciLexerVHDL.__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("Keywords"),
35 self.tr("Operators"),
36 self.tr("Attributes"),
37 self.tr("Standard Functions"),
38 self.tr("Standard Packages"),
39 self.tr("Standard Types"),
40 self.tr("User defined"),
41 ]
32 42
33 def initProperties(self): 43 def initProperties(self):
34 """ 44 """
35 Public slot to initialize the properties. 45 Public slot to initialize the properties.
36 """ 46 """

eric ide

mercurial