QScintilla/Lexers/LexerCPP.py

changeset 4206
8f0d697e6384
parent 4021
195a471c327b
child 4631
5c1a96925da4
--- a/QScintilla/Lexers/LexerCPP.py	Tue Apr 07 13:56:03 2015 +0200
+++ b/QScintilla/Lexers/LexerCPP.py	Tue Apr 07 18:58:19 2015 +0200
@@ -74,6 +74,22 @@
                 Preferences.getEditor("CppHighlightHashQuotedStrings"))
         except AttributeError:
             pass
+        try:
+            self.setHighlightBackQuotedStrings(
+                Preferences.getEditor("CppHighlightBackQuotedStrings"))
+        except AttributeError:
+            pass
+        try:
+            self.setHighlightEscapeSequences(
+                Preferences.getEditor("CppHighlightEscapeSequences"))
+        except AttributeError:
+            pass
+        try:
+            self.setVerbatimStringEscapeSequencesAllowed(
+                Preferences.getEditor(
+                    "CppVerbatimStringEscapeSequencesAllowed"))
+        except AttributeError:
+            pass
     
     def autoCompletionWordSeparators(self):
         """

eric ide

mercurial