emacs_junkie
emacs_junkie

Reputation: 41

Parsing whole project with semantic

I'm searching for a way to parse the whole directory with source code with semantic. Is this possible to do without explicitly opening each file in emacs?

Upvotes: 4

Views: 1229

Answers (2)

MrEvil
MrEvil

Reputation: 8073

I use projman mode on top of EDE. It aids in the creation of projects and provides convenient functions to find all source files and generate a global TAGS file. I had tried CEDET on and off for the past couple years and had always come away disappointed until I discovered projman.

Upvotes: 0

Cheeso
Cheeso

Reputation: 192487

Yes,

There's a thing called an EDE project in CEDET - where you can specify the list of files in a project file. Semantic then does analysis of all of the files listed in the .ede project, and stored that in the database.

At that point, completion and intellisense works on all of those files.

Upvotes: 0

Related Questions