vim-cpp
vim-cpp copied to clipboard
c or cpp syntax files
cppType `bool`, `wchar_t`, `nullptr_t` should be separated as cppType `bool`, `wchar_t` and cppTypeEx `nulptr_t`.
Per the FreeType library's documentation, it is to be included as follows: ```C++ #include #include FT_FREETYPE_H ``` However Vim's syntax files for C/C++ (and likely other languages) only highlight the...
Clang 3.4 supports both: http://clang.llvm.org/cxx_status.html#cxx14 ``` cpp #include int main() { int n = 1'000'000; std::cout
C++23 added support for `z` and `Z` size suffixes that can be combined with `u` or `U`. More information can be found on the [integer literal page](https://en.cppreference.com/w/cpp/language/integer_literal) of _cppreference.com_.
and the incorrect rendering of floats that start with ".".
Current status is like this:  `float32_t`/`float64_t` is not supported. Would you please add this? BTW, I have submitted an issue in the repo of `vim`, and they let me...