Alphaneo
Alphaneo

Reputation: 12539

displaying functions in c using vi

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.

Upvotes: 0

Views: 1300

Answers (2)

Mykola Golubyev
Mykola Golubyev

Reputation: 59862

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.

Upvotes: 0

cschol
cschol

Reputation: 13069

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.

Upvotes: 4

Related Questions