Call hierarchy Eclipse function in Vim?

I am considering moving from eclipse to vim for development in C ++. I recently “rediscovered” Vim and finally went beyond the basics. I love this, but there are a few more features that I constantly use in Eclipse, which I would also like to see in Vim.

One of them is the call hierarchy. It is very useful to know where a particular function / method is called throughout the project, and with a brief overview. Is there a similar plugin for Vim? Perhaps this is a combination of plugins / commands that are equivalent?

+8
c ++ eclipse vim
source share
2 answers

https://stackoverflow.com/questions/149558/recommended-vim-plugins-for-c-coding

The combination of cscope and taglist plugins (linked from above) should give you what you want. Maybe cctree . However, all of these problems have problems with patterns.

Also check eclim

+6
source share

Eclipse has a built-in C ++ parser that runs in the background and fully analyzes and semantically analyzes C ++ code. This is what allows it to provide code completion, call hierarchy, refactoring, and similar functions.

I don't know anything like this available for vim. If someone knows something like this, I will be interested too.

+3
source share

All Articles