26 """ |
26 """ |
27 QsciLexerBatch.__init__(self, parent) |
27 QsciLexerBatch.__init__(self, parent) |
28 Lexer.__init__(self) |
28 Lexer.__init__(self) |
29 |
29 |
30 self.commentString = "REM " |
30 self.commentString = "REM " |
|
31 |
|
32 self.keywordSetDescriptions = [ |
|
33 self.tr("Internal Commands"), |
|
34 self.tr("External Commands") |
|
35 ] |
31 |
36 |
32 def isCommentStyle(self, style): |
37 def isCommentStyle(self, style): |
33 """ |
38 """ |
34 Public method to check, if a style is a comment style. |
39 Public method to check, if a style is a comment style. |
35 |
40 |