QScintilla/Lexers/LexerCPP.py

changeset 948
fe7b94ed01ec
parent 945
8cd4d08fa9f6
child 1131
7781e396c903
equal deleted inserted replaced
946:daf90a162be4 948:fe7b94ed01ec
53 self.setFoldCompact(Preferences.getEditor("AllFoldCompact")) 53 self.setFoldCompact(Preferences.getEditor("AllFoldCompact"))
54 try: 54 try:
55 self.setDollarsAllowed(Preferences.getEditor("CppDollarsAllowed")) 55 self.setDollarsAllowed(Preferences.getEditor("CppDollarsAllowed"))
56 except AttributeError: 56 except AttributeError:
57 pass 57 pass
58 try:
59 self.setStylePreprocessor(Preferences.getEditor("CppStylePreprocessor"))
60 except AttributeError:
61 pass
58 62
59 def autoCompletionWordSeparators(self): 63 def autoCompletionWordSeparators(self):
60 """ 64 """
61 Public method to return the list of separators for autocompletion. 65 Public method to return the list of separators for autocompletion.
62 66

eric ide

mercurial