QScintilla/Lexers/LexerLua.py

changeset 6874
5a3a39442711
parent 6645
ad476851d7e0
equal deleted inserted replaced
6873:47804e8cde27 6874:5a3a39442711
31 self.commentString = "--" 31 self.commentString = "--"
32 self.streamCommentString = { 32 self.streamCommentString = {
33 'start': '--[[ ', 33 'start': '--[[ ',
34 'end': ' ]]--' 34 'end': ' ]]--'
35 } 35 }
36
37 self.keywordSetDescriptions = [
38 self.tr("Keywords"),
39 self.tr("Basic functions"),
40 self.tr("String, (table) & math functions"),
41 self.tr("Coroutines, I/O & system facilities"),
42 self.tr("User defined 1"),
43 self.tr("User defined 2"),
44 self.tr("User defined 3"),
45 self.tr("User defined 4"),
46 ]
36 47
37 def initProperties(self): 48 def initProperties(self):
38 """ 49 """
39 Public slot to initialize the properties. 50 Public slot to initialize the properties.
40 """ 51 """

eric ide

mercurial