Is there any utility or plugin which provides cscope like functionality for C++. I am looking for
- all references to a symbol
- global definitions
- functions called by a function
- functions calling a function
- files including a file
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Vim can interface directly with cscope out of the box. Type
:h cscope. This requires cscope functionality to be enabled when Vim is compiled and for cscope to be installed on your computer.There is a Vim + cscope tutorial on the cscope web page.