QScintilla/Lexers/LexerQSS.py

changeset 3468
869d0b6e1e16
parent 3466
1406a3e1180b
child 3515
1b8381afe38f
equal deleted inserted replaced
3466:1406a3e1180b 3468:869d0b6e1e16
29 self.commentString = "#" 29 self.commentString = "#"
30 self.streamCommentString = { 30 self.streamCommentString = {
31 'start': '/* ', 31 'start': '/* ',
32 'end': ' */' 32 'end': ' */'
33 } 33 }
34
35 # TODO: add QSS API generation
36
37 # TODO: fix styling, it uses CSS styles
38 34
39 def initProperties(self): 35 def initProperties(self):
40 """ 36 """
41 Public slot to initialize the properties. 37 Public slot to initialize the properties.
42 """ 38 """
150 Public method to return the lexer language. 146 Public method to return the lexer language.
151 147
152 @return lexer language (string) 148 @return lexer language (string)
153 """ 149 """
154 return "QSS" 150 return "QSS"
151
152 def lexerName(self):
153 """
154 Public method to return the lexer name.
155
156 @return lexer name (string)
157 """
158 return "QSS"

eric ide

mercurial