color_coded icon indicating copy to clipboard operation
color_coded copied to clipboard

A vim plugin for libclang-based highlighting of C, C++, ObjC

Results 42 color_coded issues
Sort by recently updated
recently updated
newest added

(Sorry for fuzzy title; can't figure out better words.) On macOS, I use cmake to generate the `compile_commands.json` file for my project. _color_coded_ finds this, but still appends/prepends the extra...

Thank you for this plugin. It works great in VIM for me. I also tried (without any results) to find plugins with similar functionality for other editors (VS code and...

I've a problem with templates as return types. As you can see in the screenshot function signatures get colored in "TemplateTypeParameter" class if i use a template variable as return...

A loop like ``` for (int i =0; i < x; i ++) runfunc(a, b, c,d ); ``` will be colored perfectly, but a loop like ``` #pragma unroll for...

Hi, Is it possible to utilize the cquery language server (which uses the clang as well) to provide c++/c semantic highlighting? Right now I have three copies of clang in...

NeoVim support would require rewriting a good deal of the VimL + Lua binding work. It would also require integration with NeoVim's asynchronous API. Preliminary work was done here: https://github.com/neovim/neovim/issues/719#issuecomment-147191109

enhancement
help wanted
neovim

I recently had an issue with my build environment, which lead to badly build color_coded.so library which failed to load. While the issue itself was more or less trivial to...

Thank for making color_coded, I have used it happily. I have used the source insight and vim, but I have a trouble to understand the code easily for bolding and...

As is described in title, [vim-plug](https://github.com/junegunn/vim-plug) won't load `after/syntax/color_coded.vim` if is set to lazy loading, like: ``` Plug 'jeaye/color_coded', {'for': ['c', 'cpp', 'objc', 'objcpp']} ``` I've found the code for...

I fix it temporarily by removing system clang include from defaults.hpp. I think there is no need to add duplicated library in the compilation system.