diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2019-07-01 16:25:37 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2019-07-01 16:25:37 +0200 |
commit | 140430ffb73d5e0851ba2df2abd29106b1677687 (patch) | |
tree | 686fc28a75cbcdddbfad4a2e93f0433614d182bc /after/syntax/cpp.vim | |
parent | d52700284984ada048ce325404dfa25237271ba1 (diff) | |
download | vim-polyglot-140430ffb73d5e0851ba2df2abd29106b1677687.tar.gz vim-polyglot-140430ffb73d5e0851ba2df2abd29106b1677687.zip |
Update
Diffstat (limited to 'after/syntax/cpp.vim')
-rw-r--r-- | after/syntax/cpp.vim | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/after/syntax/cpp.vim b/after/syntax/cpp.vim index 01108d58..ae11705e 100644 --- a/after/syntax/cpp.vim +++ b/after/syntax/cpp.vim @@ -6,7 +6,7 @@ endif " Language: C++ Additions " Maintainer: Jon Haggblad <jon@haeggblad.com> " URL: http://www.haeggblad.com -" Last Change: 1 Feb 2018 +" Last Change: 29 Jun 2019 " Version: 0.6 " Changelog: " 0.1 - initial version. @@ -964,6 +964,12 @@ if !exists("cpp_no_cpp11") syntax keyword cppSTLtype atomic_uintmax_t syntax keyword cppSTLconstant ATOMIC_FLAG_INIT syntax keyword cppSTLenum memory_order + syntax keyword cppSTLtype memory_order_relaxed + syntax keyword cppSTLtype memory_order_consume + syntax keyword cppSTLtype memory_order_acquire + syntax keyword cppSTLtype memory_order_release + syntax keyword cppSTLtype memory_order_acq_rel + syntax keyword cppSTLtype memory_order_seq_cst syntax keyword cppSTLfunction is_lock_free syntax keyword cppSTLfunction compare_exchange_weak syntax keyword cppSTLfunction compare_exchange_strong @@ -1983,6 +1989,9 @@ endif " C++17 if !exists("cpp_no_cpp20") " type_traits syntax keyword cppSTLtype remove_cvref remove_cvref_t + syntax keyword cppType char8_t + syntax keyword cppStatement co_yield co_return co_await + syntax keyword cppStorageClass consteval endif |