QScintilla/Lexers/LexerTeX.py

changeset 2965
d133c7edd88a
parent 2302
f29e9405c851
child 3011
18292228c724
equal deleted inserted replaced
2964:84b65fb9e780 2965:d133c7edd88a
42 42
43 def isCommentStyle(self, style): 43 def isCommentStyle(self, style):
44 """ 44 """
45 Public method to check, if a style is a comment style. 45 Public method to check, if a style is a comment style.
46 46
47 @param style style to check (integer)
47 @return flag indicating a comment style (boolean) 48 @return flag indicating a comment style (boolean)
48 """ 49 """
49 return False 50 return False
50 51
51 def isStringStyle(self, style): 52 def isStringStyle(self, style):
52 """ 53 """
53 Public method to check, if a style is a string style. 54 Public method to check, if a style is a string style.
54 55
56 @param style style to check (integer)
55 @return flag indicating a string style (boolean) 57 @return flag indicating a string style (boolean)
56 """ 58 """
57 return style in [QsciLexerTeX.Text] 59 return style in [QsciLexerTeX.Text]
58 60
59 def defaultKeywords(self, kwSet): 61 def defaultKeywords(self, kwSet):

eric ide

mercurial