kfpandayang / vim-cpp-enhanced-highlight

Additional Vim syntax highlighting for C++ (including C++11/14)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vim.cpp - additional vim c++ syntax highlighting

This file contains additional syntax highlighting that I use for C++11/14 development in Vim. Compared to the standard syntax highlighting for C++ it adds highlighting of (user defined) functions and the containers and types in the standard library / boost.

Development is done at: http://github.com/octol/vim-cpp-enhanced-highlight

Screenshot

Optional features

Highlighting of class scope is disabled by default. To enable set

let g:cpp_class_scope_highlight = 1

Highlighting of template functions is enabled by setting

let g:cpp_experimental_template_highlight = 1

Note: C++ template syntax is notoriously difficult to parse, so don't expect this feature to be perfect.

Installation instructions

Follow one of the sets of directions below and reload vim afterwards.

Vundle

Instal using vundle by adding

Plugin 'octol/vim-cpp-enhanced-highlight'

to .vimrc and run :PluginInstall.

Git submodule + Pathogen

If you have pathogen installed, and you prefer to use git submodules, run

cd ~/.vim
git submodule add https://github.com/octol/vim-cpp-enhanced-highlight.git bundle/syntax/

Manual installation

If you don't have either Vundle or Pathogen installed, copy the cpp.vim file (optionally also c.vim) to .vim/after/syntax.

git clone https://github.com/octol/vim-cpp-enhanced-highlight.git /tmp/vim-cpp-enhanced-highlight
mkdir -p ~/.vim/after/syntax/
mv /tmp/vim-cpp-enhanced-highlight/after/syntax/cpp.vim ~/.vim/after/syntax/cpp.vim
rm -rf /tmp/vim-cpp-enhanced-highlight

Issues

Vim tend to a have issues with flagging braces as errors, see for example vim-jp/vim-cpp#16. A workaround is to set

let c_no_curly_error=1

Background information

Jon Haggblad jon@haeggblad.com

Last update: 21 September 2014

About

Additional Vim syntax highlighting for C++ (including C++11/14)


Languages

Language:Vim Script 98.1%Language:C++ 1.9%