- Wiki is added 2018.4.5
- Github Page is added 2013.5.26
- Install script(install.sh) is added 2013.1.31
- LLVM vimrc is added 2013.1.30
- Install Guide is updated 2013.1.30
- Makes vim more useful to work on C/C++ projects (and possibly other projects too)
- Includes many useful short-cut key mappings
- Includes many useful vim plugins (via Vundle)
- Script to generate cscope.out
- Script to generate ctags
- Script to remove ctags, cscope.out
- Settings related with C/C++ programming
- Settings related with a certain project i.e. include directory and paths for tags and cscope.out for libraries related with a certain project
- Settings related with a certain OS system i.e. the paths for C++ standard header files
- Ubuntu and Windows
- on Linux : git-core vim cscope exuberant-ctags
- on Windows : gvim, 7zip and git
How to install is explained in wiki.
There is a rule to use these scripts.
- Generate ctags and cscope.out (by running mkcscope.sh and mkctags.sh) in a top directory of your project
$ mkctags.sh $ mkcscope.sh
To close cscope after cscope finished it's job, press CTRL+D.
- Open vim from the top directory of your project
Jumogehn H