tags:

views:

105

answers:

2

Is there a way to display all functions in a C source file using vim. This feature is available with the brief editor. And this would help me a lot.

Note: This is not a programming question.

+3  A: 

I think the Taglist plugin is what you are looking for. It shows functions, classes etc. in a sidebar and is designed to make source code browsing a lot easier.

cschol
A: 

I use this one. 0scan

You can make incremental search on all functions in the current file using tag search mechanism.

0scan is designed to perform lots of different searches. And here you can find how to search for a functions and objects in the current file.

Mykola Golubyev