sbhal
sbhal

Reputation: 145

Index C/C++ code using Emacs

How to index C/C++ code using Emacs?
Is it possible to use Cscope db to browsing C/C++ code in emacs?

Upvotes: 2

Views: 443

Answers (1)

abo-abo
abo-abo

Reputation: 20342

CEDET (built-in) does a good job for this.

Use http://alexott.net/en/writings/emacs-devenv/EmacsCedet.html for an introduction to CEDET.

Use semantic-ia-fast-jump to go to definition of entity at point.

Use function-args or helm-semantic if you'd like to jump within a file with helm like so:

function-args

Upvotes: 1

Related Questions