├── .gitignore ├── COPYING ├── README.md ├── doc └── clang.txt ├── plugin ├── clang.vim └── compilation_database.py └── stdafx.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmao945/vim-clang/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmao945/vim-clang/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmao945/vim-clang/HEAD/README.md -------------------------------------------------------------------------------- /doc/clang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmao945/vim-clang/HEAD/doc/clang.txt -------------------------------------------------------------------------------- /plugin/clang.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmao945/vim-clang/HEAD/plugin/clang.vim -------------------------------------------------------------------------------- /plugin/compilation_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmao945/vim-clang/HEAD/plugin/compilation_database.py -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmao945/vim-clang/HEAD/stdafx.h --------------------------------------------------------------------------------