331:0a5fc8298d32 | 333:fd4e4c1d0852 |
---|---|
24 """ | 24 """ |
25 QsciLexerLua.__init__(self, parent) | 25 QsciLexerLua.__init__(self, parent) |
26 Lexer.__init__(self) | 26 Lexer.__init__(self) |
27 | 27 |
28 self.commentString = "--" | 28 self.commentString = "--" |
29 self.streamCommentString = { | |
30 'start' : '--[[ ', | |
31 'end' : ' ]]--' | |
32 } | |
29 | 33 |
30 def initProperties(self): | 34 def initProperties(self): |
31 """ | 35 """ |
32 Public slot to initialize the properties. | 36 Public slot to initialize the properties. |
33 """ | 37 """ |