--- a/src/eric7/QScintilla/Lexers/LexerTCL.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/QScintilla/Lexers/LexerTCL.py Wed Jul 13 14:55:47 2022 +0200 @@ -20,17 +20,18 @@ """ Subclass to implement some additional lexer dependant methods. """ + def __init__(self, parent=None): """ Constructor - + @param parent parent widget of this lexer """ QsciLexerTCL.__init__(self, parent) Lexer.__init__(self) - + self.commentString = "#" - + self.keywordSetDescriptions = [ self.tr("TCL Keywords"), self.tr("TK Keywords"), @@ -42,7 +43,7 @@ self.tr("User defined 3"), self.tr("User defined 4"), ] - + def initProperties(self): """ Public slot to initialize the properties. @@ -51,41 +52,43 @@ self.setFoldCompact(Preferences.getEditor("AllFoldCompact")) with contextlib.suppress(AttributeError): self.setFoldComments(Preferences.getEditor("TclFoldComment")) - + def isCommentStyle(self, style): """ Public method to check, if a style is a comment style. - + @param style style to check (integer) @return flag indicating a comment style (boolean) """ - return style in [QsciLexerTCL.Comment, - QsciLexerTCL.CommentBlock, - QsciLexerTCL.CommentBox, - QsciLexerTCL.CommentLine] - + return style in [ + QsciLexerTCL.Comment, + QsciLexerTCL.CommentBlock, + QsciLexerTCL.CommentBox, + QsciLexerTCL.CommentLine, + ] + def isStringStyle(self, style): """ Public method to check, if a style is a string style. - + @param style style to check (integer) @return flag indicating a string style (boolean) """ return style in [QsciLexerTCL.QuotedString] - + def defaultKeywords(self, kwSet): """ Public method to get the default keywords. - + @param kwSet number of the keyword set (integer) @return string giving the keywords (string) or None """ return QsciLexerTCL.keywords(self, kwSet) - + def maximumKeywordSet(self): """ Public method to get the maximum keyword set. - + @return maximum keyword set (integer) """ return 9