From: Stefan Bund Date: Tue, 7 Mar 2017 12:25:29 +0000 (+0100) Subject: update font-lock keywords to include some C++11/14 stuff X-Git-Url: http://g0dil.de/git?p=emacs-init.git;a=commitdiff_plain;h=c5319a9ee8692a27fc17d70fe416c313d10dcd01 update font-lock keywords to include some C++11/14 stuff --- diff --git a/setup/emacsstuff.el b/setup/emacsstuff.el index cddd38c..9f8764a 100644 --- a/setup/emacsstuff.el +++ b/setup/emacsstuff.el @@ -36,3 +36,16 @@ (if match (message "compilation-error-regexp-alist-alist key: %s" match) (error "no error line at point")))))) + +(defun c++-mode-update-font-lock-keywords () + (font-lock-add-keywords + nil '(;; complete some fundamental keywords + ;; add the new C++11 keywords + ("\\<\\(alignof\\|alignas\\|constexpr\\|decltype\\|noexcept\\|nullptr\\|static_assert\\|thread_local\\|override\\|final\\)\\>" . font-lock-keyword-face) + ("\\<\\(char[0-9]+_t\\)\\>" . font-lock-keyword-face) + ;; hexadecimal numbers + ("\\<0[xX][0-9A-Fa-f]+\\>" . font-lock-constant-face) + ;; integer/float/scientific numbers + ("\\<[\\-+]*[0-9]*\\.?[0-9]+\\([ulUL]+\\|[eE][\\-+]?[0-9]+\\)?\\>" . font-lock-constant-face)))) + +(add-hook 'c++-mode-hook 'c++-mode-update-font-lock-keywords t)