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
5
votes
1 answer

CEDET: storing tags manually

I'm using ECB with Cedet - and semantic search engine stores tags about the files I visit in its cache files. I'm also using ECB's left-symboldef layout - which shows definition of the tag the cursor is on. In order to do that semantic opens the…
Adobe
  • 12,967
  • 10
  • 85
  • 126
4
votes
3 answers

Change where semantic summary is displayed

In CEDET, the minor mode semantic-idle-summary-mode displays information about the symbol under point in the echo area. I really like this mode, as it helps me remember, for instance, which arguments the function I'm calling needs. The problem is,…
Malabarba
  • 4,473
  • 2
  • 30
  • 49
4
votes
1 answer

Emacs CEDET EDE non-trivial project setups

Trying to understand how EDE works by using it to generate Makefiles for a project directory that contains several targets under a specific hierarchy. I'm not having any luck, and the info pages don't seem to answer my question. My directory…
assem
  • 2,077
  • 1
  • 19
  • 24
4
votes
2 answers

Emacs CEDET for OpenCV C++ Interface

So, I have used CEDET for awhile now, and things work pretty well in general. I'm moving from using it with C to C++, specifically for OpenCV 2.3 (linux) and I'm running into problems. I'm using emacs24 with the latest dev version of CEDET. It is…
assem
  • 2,077
  • 1
  • 19
  • 24
4
votes
1 answer

Very specific CEDET setup difficulties

I have the following setup: I'm working with C++ projects under a custom build system and the source code directories are not very stable on my development machine because I'm constantly checking out specific versions of some projects in their own…
BD at Rivenhill
  • 12,395
  • 10
  • 46
  • 49
4
votes
1 answer

CEDET Semantic Analyzer rather slow on an otherwise fast system

My test setup: Intel Dual Core 3GHz, Windows XP 32 bit, Emacs 23.2.1, CEDET v1.0 (byte-compiled as described in the INSTALL docs). The Emacs init file only consists of these four lines: (load…
Kay Sarraute
  • 1,232
  • 8
  • 16
4
votes
2 answers

Emacs CEDET and system include paths

I'd like to add path to the openMPI library headers. So, after i found all openMPI headers are in /usr/lib/openmpi/include/* i added these two lines to my .emacs: (semantic-add-system-include "/usr/lib/openmpi/include"…
synasius
  • 323
  • 3
  • 7
4
votes
2 answers

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?
4
votes
1 answer

Emacs CEDET Semantic tag folding

I would like that every time I open a .cpp file, semantic tag-folding would become activated. I am using the latest version of cedet (loading cedet-devel-load.el). I have (semantic-mode 1) (require 'semantic/ia) (require…
user1377000
  • 1,433
  • 3
  • 17
  • 29
4
votes
1 answer

emacs24 semantic completion

I'm trying to get semantic completions working with emacs 24 and the version of cedet that comes with it. Completions work for classes I defined in my own source file, but completion isn't working for the standard library or STL stuff Here is my…
Neal
  • 6,722
  • 4
  • 38
  • 31
4
votes
1 answer

emacs cedet semantic with Qt4 how to configure

I use emacs 23.1.1 on X86_64-pc-gnu-linux (ubuntu 10.04) and follow the famous link http://alexott.net/en/writings/emacs-devenv/EmacsCedet.html to add all config to .emacs. But it can NOT do even basic job. There must be sth wrong with my setup or…
Yan Gao
  • 181
  • 1
  • 3
  • 11
4
votes
1 answer

How to highlight #ifdef #endif in emacs?

I don't know if cc-mode or cedet is providing something alike that but that must not be such hard to realize I hope. What I want is to change background for code in C++ / C# source files between #ifdef (something) and #endif. Is there mode option…
cnd
  • 32,616
  • 62
  • 183
  • 313
4
votes
2 answers

cedet ede project for emacs

I am trying learn how to work with CEDET. I don't have any project to mess around so I want to shoot Emacs itself. It seems CEDET automatically detects Emacs as a project when I open Emacs repository in dir. But when I do M-x ede-find-file there is…
kindahero
  • 5,817
  • 3
  • 25
  • 32
4
votes
1 answer

Emacs: is there a way I can get a list of custom tags - and navigate thru them?

Suppose I have a file with the following marks (or call it tags): test.el: ;; ===== ;; gnus: some code here ;; ==== ;; ECB: some code here ;; ===== ;; code: some code here (in elisp) test.py: # ======== # imports: some code here # ===== #…
Adobe
  • 12,967
  • 10
  • 85
  • 126
3
votes
1 answer

Lisp error while using ede-cpp-root-project

I've been trying to get the CEDET working with a simple project for the last little while. I have the following project file: (ede-cpp-root-project "aesalon-project" :name "aesalon-name" :file…
kestrel
  • 1,314
  • 10
  • 31