--- 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): """