Questions tagged [cedet]

CEDET is a Collection of Emacs Development Environment Tools written with the end goal of creating an advanced development environment in Emacs

CEDET provides number of features:

  • Projects management system
  • Smart Completion
  • Smart Help/Jump
  • Symbol References
  • Code Generation
  • UML Diagrams
  • Advanced Code Browsing
186 questions
3
votes
1 answer

Highlight local variables, object attributes and constants in Emacs24 + CEDET

I'm relatively new to Emacs and I have recently set it up as an IDE to develop C++ (emacs24 + builtin CEDET + ECB from cvs). I am enjoying the results so far but I'd like some custom highlighting which doesn't seem to exist by default. When I…
pparescasellas
  • 620
  • 1
  • 12
  • 23
3
votes
1 answer

Emacs CEDET semantic completions "cannot find types for ..."

So in my process of switching to emacs I find it very difficult to forgo Visual Studio 2010 for C++. Trying to setup cedet for emacs didn't make it any easier. So I used the gentle introduction by Alex Ott and my init file looks similar to the one…
octi
  • 1,470
  • 1
  • 17
  • 28
3
votes
1 answer

make emacs cedet semantic look for include directories

Cedet is a nice tool suite but in default configuration it has some difficulty locating included files. I would like to make it look for a directory called include/ in each parent directory and get the file from there. for examplme a file…
fakedrake
  • 6,528
  • 8
  • 41
  • 64
3
votes
1 answer

How to look up C function in emacs which does not belongs to a class?

So far, I was able to call member functions which belong to a class for a struct. CEDET can give the suggestion nicely. However, for non-member functions, such as functions in C, which usually does not belong to anything i.e. functions like sort,…
Amumu
  • 17,924
  • 31
  • 84
  • 131
3
votes
1 answer

[cedet]: how to add a new ede target?

I can't find an easy way to add ede targets to my projects. I am looking for the way to add an install target or even a test target to run unittest. How do you do that with ede-project-manager ?
Xavier Maillard
  • 958
  • 7
  • 15
3
votes
1 answer

GNU Emacs23: cedet troubles

Since I switched to CEDET as shipped with recent emacs release (23.2), CEDET does not work reliably anymore. For example I am no longer able to regenerate an EDE project. After looking aroud, it seems that all CEDET templates are missing from the…
Xavier Maillard
  • 958
  • 7
  • 15
3
votes
0 answers

Emacs with CEDET changes copy/paste to include trailing spaces?

I just started trying out CEDET today, which I really like, but it seems to do something completely worthless with respect to copying/pasting. If I highlight some stuff and copy it, when it gets pasted back the newlines are eliminated and there is…
Paul D.
  • 1,785
  • 2
  • 19
  • 25
3
votes
1 answer

Attempting to setup C++ project using CEDET/EDE

I have a couple C++ projects that I am working on. I have been using semantic for the sake of autocompletion. However, I want to make better use of the tools out there. I have the following directory structure project/ Makefile src/ my .cpp and…
Justin Wood
  • 9,941
  • 2
  • 33
  • 46
3
votes
1 answer

make emacs semantic auto complete tip "always on"

I have just installed cedet (CVS version) and I am now playing with in emacs and my C++ source code. Regarding the auto complete, I can invoke the tool tip and the menu from their semantic-ia-complete-* commands. Does anyone know how I can make the…
user193272
  • 984
  • 1
  • 12
  • 18
3
votes
0 answers

Cedet - Wrong type argument , stringp, 1

I am using the latest cedet version from bzr. My cedet configuration is given below ( Taken from Alex Ott's file ). (setq cedet-root-path (file-name-as-directory "~/cedet")) (load-file (concat cedet-root-path "cedet-devel-load.el")) …
yogi_en
  • 121
  • 1
  • 3
  • 11
3
votes
3 answers

How to disable semantic for specific type of files

For files with mixed types of programming languages, such as .html, semantic has trouble analyzing the code. Is there any way to specifically disable the auto analyzing by semantic for those types of files? I am using the built-in cedet coming with…
RNA
  • 146,987
  • 15
  • 52
  • 70
3
votes
1 answer

Latest CEDET version can't load semantic packages

I am having problems loading some of the semantic packages that Alex Ott recommends in his well-known guide to CEDET when using the recent versions of CEDET. My previous setting worked with no problem in Emacs 24.2.1, but I just upgraded to the…
Amelio Vazquez-Reina
  • 91,494
  • 132
  • 359
  • 564
3
votes
1 answer

How can I tell if CEDET is using GNU Global?

I have CEDET working for the most part on emacs 24.2 with the latest from bzr repository. When I am searching for symbols or definitions, I see that the cedet mini-buffer shows parses through a lot of files, some that are not there as…
user994572
  • 139
  • 1
  • 11
3
votes
1 answer

EIEIO (bzr, cedet 1.1) not loading in emacs, version 1.3 is already loaded

I downloaded and compiled the development branch of CEDET, and I load it according to the guide on the webpage, but when I start Emacs, i get error: EIEIO Version 1.3 already loaded; load CEDET at the beginning of your init file to avoid…
Sebastian Mendez
  • 661
  • 9
  • 18
3
votes
2 answers

how can I shadow the .el files from the Emacs directory with the ones I specify in my init file

So list-load-path-shadows tells which .el files shadow other files. Most of the times the native files found in my emacs distribution shadow newer files I downloaded which I preload in my init file. For example I have cloned the cedet repository and…
octi
  • 1,470
  • 1
  • 17
  • 28