c_ext/CFileEditor.py
changeset 1768 691083b5682a
parent 1736 7e61baa047f0
child 1782 5b6ad7a7fd9d
--- a/c_ext/CFileEditor.py	Fri Aug 18 12:36:31 2017 +0300
+++ b/c_ext/CFileEditor.py	Fri Aug 18 20:14:38 2017 +0300
@@ -31,14 +31,14 @@
 class CppEditor(CodeEditor):
 
     KEYWORDS = ["asm", "auto", "bool", "break", "case", "catch", "char", "class",
-        "const", "const_cast", "continue", "default", "delete", "do", "double",
-        "dynamic_cast", "else", "enum", "explicit", "export", "extern", "false",
-        "float", "for", "friend", "goto", "if", "inline", "int", "long", "mutable",
-        "namespace", "new", "operator", "private", "protected", "public", "register",
-        "reinterpret_cast", "return", "short", "signed", "sizeof", "static",
-        "static_cast", "struct", "switch", "template", "this", "throw", "true", "try",
-        "typedef", "typeid", "typename", "union", "unsigned", "using", "virtual",
-        "void", "volatile", "wchar_t", "while"]
+                "const", "const_cast", "continue", "default", "delete", "do", "double",
+                "dynamic_cast", "else", "enum", "explicit", "export", "extern", "false",
+                "float", "for", "friend", "goto", "if", "inline", "int", "long", "mutable",
+                "namespace", "new", "operator", "private", "protected", "public", "register",
+                "reinterpret_cast", "return", "short", "signed", "sizeof", "static",
+                "static_cast", "struct", "switch", "template", "this", "throw", "true", "try",
+                "typedef", "typeid", "typename", "union", "unsigned", "using", "virtual",
+                "void", "volatile", "wchar_t", "while"]
     COMMENT_HEADER = "/"
 
     def SetCodeLexer(self):