From ae0a4068aa5fc6634862a03b19d4187fc30b5115 Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Mon, 29 Feb 2016 01:05:15 +0200 Subject: [PATCH] Add some C++11 keywords, fixes #478 --- company-keywords.el | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/company-keywords.el b/company-keywords.el index f0c6ca63f..62d8c81dd 100644 --- a/company-keywords.el +++ b/company-keywords.el @@ -35,13 +35,16 @@ (defvar company-keywords-alist ;; Please contribute corrections or additions. `((c++-mode - "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" + "alignas" "alignof" "asm" "auto" "bool" "break" "case" "catch" "char" + "char16_t" "char32_t" "class" "const" "constexpr" "const_cast" "continue" + "decltype" "default" "delete" "do" "double" "dynamic_cast" "else" "enum" + "explicit" "export" "extern" "false" "final" "float" "for" "friend" + "goto" "if" "inline" "int" "long" "mutable" "namespace" "new" "noexcept" + "nullptr" "operator" "override" + "private" "protected" "public" "register" "reinterpret_cast" + "return" "short" "signed" "sizeof" "static" "static_assert" + "static_cast" "struct" "switch" "template" "this" "thread_local" + "throw" "true" "try" "typedef" "typeid" "typename" "union" "unsigned" "using" "virtual" "void" "volatile" "wchar_t" "while") (c-mode "auto" "break" "case" "char" "const" "continue" "default" "do" -- 2.39.2