QScintilla/Lexers/LexerCPP.py

changeset 2261
f4bb5648fc29
parent 1509
c0b5e693b0eb
child 2302
f29e9405c851
equal deleted inserted replaced
2260:e5146f38a03a 2261:f4bb5648fc29
62 try: 62 try:
63 self.setHighlightTripleQuotedStrings( 63 self.setHighlightTripleQuotedStrings(
64 Preferences.getEditor("CppHighlightTripleQuotedStrings")) 64 Preferences.getEditor("CppHighlightTripleQuotedStrings"))
65 except AttributeError: 65 except AttributeError:
66 pass 66 pass
67 try:
68 self.setHighlightHashQuotedStrings(
69 Preferences.getEditor("CppHighlightHashQuotedStrings"))
70 except AttributeError:
71 pass
67 72
68 def autoCompletionWordSeparators(self): 73 def autoCompletionWordSeparators(self):
69 """ 74 """
70 Public method to return the list of separators for autocompletion. 75 Public method to return the list of separators for autocompletion.
71 76

eric ide

mercurial