src/eric7/QScintilla/Lexers/LexerBash.py

branch
eric7
changeset 9484
d2eb8f0a5bf0
parent 9473
3f23dbf37dbe
child 9653
e67609152c5e
equal deleted inserted replaced
9483:1208b0ef8ccb 9484:d2eb8f0a5bf0
69 69
70 @param kwSet number of the keyword set (integer) 70 @param kwSet number of the keyword set (integer)
71 @return string giving the keywords (string) or None 71 @return string giving the keywords (string) or None
72 """ 72 """
73 return QsciLexerBash.keywords(self, kwSet) 73 return QsciLexerBash.keywords(self, kwSet)
74
75
76 def createLexer(variant="", parent=None):
77 """
78 Function to instantiate a lexer object.
79
80 @param variant name of the language variant
81 @type str
82 @param parent parent widget of this lexer
83 @type QObject
84 @return instantiated lexer object
85 @rtype LexerBash
86 """
87 return LexerBash(parent=parent)

eric ide

mercurial