├── .gitignore ├── LICENSE ├── README.md ├── after └── syntax │ ├── c.vim │ └── cpp.vim └── test ├── color.cpp └── color2.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octol/vim-cpp-enhanced-highlight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octol/vim-cpp-enhanced-highlight/HEAD/README.md -------------------------------------------------------------------------------- /after/syntax/c.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octol/vim-cpp-enhanced-highlight/HEAD/after/syntax/c.vim -------------------------------------------------------------------------------- /after/syntax/cpp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octol/vim-cpp-enhanced-highlight/HEAD/after/syntax/cpp.vim -------------------------------------------------------------------------------- /test/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octol/vim-cpp-enhanced-highlight/HEAD/test/color.cpp -------------------------------------------------------------------------------- /test/color2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octol/vim-cpp-enhanced-highlight/HEAD/test/color2.cpp --------------------------------------------------------------------------------