QScintilla/Lexers/LexerVHDL.py

changeset 945
8cd4d08fa9f6
parent 791
9ec2ac20e54e
child 1131
7781e396c903
--- a/QScintilla/Lexers/LexerVHDL.py	Fri Mar 11 08:55:14 2011 +0100
+++ b/QScintilla/Lexers/LexerVHDL.py	Fri Mar 11 16:51:57 2011 +0100
@@ -12,8 +12,9 @@
 from .Lexer import Lexer
 import Preferences
 
+
 class LexerVHDL(QsciLexerVHDL, Lexer):
-    """ 
+    """
     Subclass to implement some additional lexer dependant methods.
     """
     def __init__(self, parent=None):
@@ -44,7 +45,7 @@
         
         @return flag indicating a comment style (boolean)
         """
-        return style in [QsciLexerVHDL.Comment, 
+        return style in [QsciLexerVHDL.Comment,
                          QsciLexerVHDL.CommentLine]
     
     def isStringStyle(self, style):
@@ -53,14 +54,14 @@
         
         @return flag indicating a string style (boolean)
         """
-        return style in [QsciLexerVHDL.String, 
+        return style in [QsciLexerVHDL.String,
                          QsciLexerVHDL.UnclosedString]
     
     def defaultKeywords(self, kwSet):
         """
         Public method to get the default keywords.
         
-        @param kwSet number of the keyword set (integer) 
+        @param kwSet number of the keyword set (integer)
         @return string giving the keywords (string) or None
         """
-        return QsciLexerVHDL.keywords(self, kwSet)
\ No newline at end of file
+        return QsciLexerVHDL.keywords(self, kwSet)

eric ide

mercurial