QScintilla/Lexers/LexerCPP.py

changeset 1444
552d2d74f5cf
parent 1131
7781e396c903
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1443:9b9396fc54aa 1444:552d2d74f5cf
57 pass 57 pass
58 try: 58 try:
59 self.setStylePreprocessor(Preferences.getEditor("CppStylePreprocessor")) 59 self.setStylePreprocessor(Preferences.getEditor("CppStylePreprocessor"))
60 except AttributeError: 60 except AttributeError:
61 pass 61 pass
62 try:
63 self.setHighlightTripleQuotedStrings(
64 Preferences.getEditor("CppHighlightTripleQuotedStrings"))
65 except AttributeError:
66 pass
62 67
63 def autoCompletionWordSeparators(self): 68 def autoCompletionWordSeparators(self):
64 """ 69 """
65 Public method to return the list of separators for autocompletion. 70 Public method to return the list of separators for autocompletion.
66 71

eric ide

mercurial