src/eric7/QScintilla/Lexers/LexerCMake.py

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

eric ide

mercurial