Tagged Questions

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

learn more… | top users | synonyms

10
votes
1answer
931 views

CEDET scalability tips

I use CEDET (latest CVS) with several moderately large projects (a few hundred kLOCs each, mostly C, but some C++) and sometimes experience long pauses in which the system is completely unresponsive ...
8
votes
1answer
3k views

Configuring CEDET for GNU Emacs 23.2.1

I recently built and installed Emacs 23.2.1 for OS X 10.6, which apparently comes with CEDET 1.0pre7 pre-installed, but my old CEDET configuration fails (for instance ...
7
votes
1answer
1k views

Emacs/CEDET. Multiple projects and code completion

I've setup emacs 23.1.50.1 with CEDET 1.0 and ECB 2.40 (heavily inspired by Alex Otts setup at http://github.com/alexott/emacs-configs/blob/master/rc/emacs-rc-cedet.el and his gentle introduction to ...
7
votes
2answers
535 views

emacs intellisense

I know this has been discussed a lot of times but is there any nice how-to for c/c++ intellisense in emacs? I have never been able to set up cedet properly. Right now I am working on a maintenance ...
6
votes
1answer
598 views

Is it possible to get Semantic (emacs) to visit all files automatically?

From what I can tell from the docs, semantic works by slowly building up an idea of what's in your project by analysing each file (and possibly its neighbours) as you visit them. This is too slow. I'd ...
6
votes
1answer
1k views

Emacs, Cedet and semantic

I've configured CEDET for emacs following Alex article (great!!). Now, the questions: 1 - i've generated GTAGS with Gnu Global in my /usr/include, how can i check if semantic is using GTAGS? 2 - ...
5
votes
1answer
660 views

How to make emacs Semantic use the TAG file generated by GTAGS

My emacs version is 23.2.1 Although I used the following to change the backend to use GTAGS. (require 'semantic/db-global) (semanticdb-enable-gnu-global-databases 'c-mode) ...
5
votes
1answer
121 views

Emacs: mitigating dependancy on the mouse

In Emacs, how does one emulate mouse button presses and the like using a keyboard? For example, with CEDET's Semantic (included with GNU Emacs 23.2.1), includes can be right clicked to provide a menu; ...
4
votes
1answer
240 views

How to use Emacs and CEDET with SCons?

How to integrate SCons and emacs + cedet without breaking semantic and auto-complete?
4
votes
1answer
542 views

using emacs CEDET completion for python

In default installation of cedet-1.0 completion can only track global scope symbols in current file. This is not much differs from built-in completion functions (dabbrev-expand or hippie-expand). It ...
4
votes
2answers
697 views

Emacs source code navigation features

I am working on a large c++ project. I am working with emacs for the last six months. I have try to configure CEDET so as to be able to navigate easily but i have found some problems. 1.- Sometimes ...
4
votes
2answers
1k views

Emacs, C++ code completion for vectors

I am new to Emacs, and I have the following code as a sample. I have installed GNU Emacs 23.1.1 (i386-mingw-nt6.1.7600), installed cedet-1.0pre7.tar.gz. , installed ELPA, and company. You can find my ...
4
votes
1answer
2k views

How to compile CEDET 1.0pre7 compilation for Emacs 23.1.50 on Windows?

I'm trying to compile CEDET from CVS for Emacs 23.1.50 on Windows and I've got error on "Step 6: Turning on EDE...": "defvar: Symbol's value as variable is void: cedet-menu-map". Compilation of CEDET ...
3
votes
1answer
51 views

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 ...
3
votes
1answer
193 views

Why code completion using CEDET in Emacs so slow?

I recently try KDevelop. It looks up for symbols (variables, function names, class, struct...) much faster (instantly) than semantic-complete-self-insert or M-Ret. Using M-Ret is faster, but it does ...
3
votes
0answers
73 views

cedet parsing issue on #ifdef

I 'm emacs cedet user. i got great help from cedet. but, I found some error prcessing #ifdef handling in cedet. not sure it's from cedet internal or my mis-configuration. I quote some code in Curl ...
3
votes
1answer
380 views

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 ...
3
votes
1answer
265 views

Open shell in emacs with a given working directory

I want to have a make-shells command in emacs that will open a number of emacs-shell buffers, each with its own working directory. The idea is that for each project I'm working on, I have a shell that ...
3
votes
1answer
655 views

Emacs: Using and initializing CEDET

I'm using Emacs with CEDET and auto complete for code completion. Originally I set up CEDET so it loads at Emacs start up every time. However, this took quite a long time, so i thought it would be ...
3
votes
1answer
2k views

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 ...
2
votes
1answer
51 views

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 ...
2
votes
1answer
65 views

how to use built in cedet in emacs 23.3?

I am using emacs 23.3 I heard that emacs 23.3 include cedet by default but how can I use them? how should I change my ".emacs" file for .. function parameter hint (when I type "malloc(" then ...
2
votes
0answers
31 views

Buffer is killed while CEDET parsing

I use latest CEDET and emacs 23.2. I found something wrong with CEDET, that is somehow my current edit buffer killed without any error message with semantic-load-enable-guady-code-helpers mode. This ...
2
votes
1answer
96 views

error for semantic in emacs 23.3 with integrated cedet

Here is the version of cedet I am using CEDET Version: 1.0 Requested File Loaded Package Version Version Version ...
2
votes
2answers
276 views

Emacs 24 builtin cedet function highlight

I want to get rid of the underline above functions, e.g., as shown in this screenshot above "void": http://cedet.sourceforge.net/img-gen/semantic-ia-complete-menu.png I cannot find anything obvious ...
2
votes
1answer
119 views

using cedet semantic wisent-ruby?

I'm just getting started setting up cedet following various guides including Alex Ott's. Here is what I have so far in my init file. (require 'cedet) (semantic-load-enable-code-helpers) ;; imenu ...
2
votes
1answer
127 views

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 ...
2
votes
1answer
318 views

Emacs cache save error with cedet

Installed GNU Emacs 23.2.1 (i686-pc-linux-gnu) and I'm getting constant save errors. The following line is repeated over and over again with maybe 30sec intervals. byte-code: Beginning of buffer [6 ...
2
votes
1answer
134 views

Writing a parser with Wisent

I've described a grammar in a .wy file, but how can I build the parser? Also, sorry if this question is too simple, but I'm having a bad time figuring out how to use CEDET. Are there any docs besides ...
2
votes
1answer
108 views

how to do file selection using mouse with emacs cedet?

I am using emacs 23.2 on Ubuntu 10.04 & Windows XP along with cedet extention. Cedet seems to work fine but I could not select the file using mouse. Rather I need to use the Key press to select ...
2
votes
1answer
362 views

[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 ?
2
votes
1answer
860 views

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 ...
2
votes
0answers
136 views

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 ...
2
votes
2answers
613 views

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 ...
2
votes
2answers
248 views

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 ?
1
vote
1answer
142 views

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 ...
1
vote
1answer
171 views

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 ...
1
vote
1answer
156 views

disable cedet/semantic code completion for lisp mode

I've set up cedet/semantic code completion for my c++ projects (using this tutorial: http://alexott.net/en/writings/emacs-devenv/EmacsCedet.html) but do not want the or all the helpers it ...
1
vote
4answers
256 views
1
vote
3answers
404 views

“wrong-type-argument stringp nil” error on symbol completion using semantic

When using 'senator-complete-symbol' on C++ source file, some times it works but most of the time I ended up with the error "wrong-type-argument stringp nil, compare-strings("Ins" 0 nil nil 0 3 ...
1
vote
1answer
97 views

CEDET: Case insensitive completion?

I am programming in C++ using CEDET and I would like autocompletion to be case-insensitive. Is there a way to do this? For instance, semantic will complete: GL_POI => GL_POINTS but not gl_poi ...
1
vote
1answer
628 views

Emacs imenu integration with cedet code auto-completion

Hi I can't integrate the imenu with the CEDET code completion. what appears when I invoke auto-completion is another buffer with the possible words. reference My .emacs file: (require 'color-theme) ...
1
vote
1answer
741 views

Emacs cedet semantic won't autocomplete scanf and malloc related functions

With this .emacs file (load-file "~/Sources/cedet-1.0pre7/common/cedet.el") (semantic-load-enable-excessive-code-helpers) ;;(semantic-load-enable-semantic-debugging-helpers) (setq ...
1
vote
1answer
701 views

Emacs CEDET setup doubt

I installed cedet successfully today and got most of it working; thanks to Alex Ott's Gentle Introduction to Cedet. However i am having a problem When I give the exact path relative to the current ...
1
vote
2answers
5k views

EMACS for C++ development - Problem with CEDET code completion and project

I am setting up EMACS for a C++ project on UBUNTU. I am successful so far in installing ECB CEDET - I got code completion and other features working. Color theme I am having problems with EDE ...
0
votes
1answer
43 views

emacs cedet can not proper parse the time.h under /usr/include

I configured my cedet almost the same with http://alexott.net/en/writings/emacs-devenv/EmacsCedet.html. Thanks alexott , most of the time it works well, but I found that it can not well parse the tm ...
0
votes
1answer
29 views

Cedet Help: Configuring a “Make” project

I am learning cedet for my c/c++ projects. However, I am facing difficulty in Make projects. Say I have a file main.cpp that looks like this //main.cpp #include "temp.h" blah... <c++ code> ...
0
votes
2answers
101 views

How to load cedet, semantic et. al only when .cxx,.h .cpp files are open

Because I use Emacs for many things these days I would like to only load cedet.el when I open a c/C++ source or header and not everytime emacs starts since it takes a significant toll on the startup ...
0
votes
0answers
46 views

Emacs code browser “Store current window-sizes” doesn't actually save window dimensions

I'm using emacs with CEDET+emacs code browser (ECB). For the most part, ECB works great. Hwoever, I'm trying to get the window sizes saved so I don't have to drag the panes around everytime I restart ...
0
votes
1answer
73 views

How can I get Emacs to ignore certain keywords?

I would like to tell emacs to treat some keywords (or regular expressions even better) as syntactic whitespace, or, in other words, to ignore them. For example: emacs highlighting and cedet ...

1 2