vim-cpp icon indicating copy to clipboard operation
vim-cpp copied to clipboard

c or cpp syntax files

Results 17 vim-cpp issues
Sort by recently updated
recently updated
newest added

cppType `bool`, `wchar_t`, `nullptr_t` should be separated as cppType `bool`, `wchar_t` and cppTypeEx `nulptr_t`.

patched

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...

bug
patched

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: ![Image](https://github.com/user-attachments/assets/545c0a53-a20a-4057-a19d-425d0f7d81ae) `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...