Questions tagged [emacs-ecb]

Emacs Code Browser - A source code browser for Emacs

ECB stands for "Emacs Code Browser".

From the project website at http://ecb.sourceforge.net/:

While Emacs already has good editing support for many modes, its browsing support is somewhat lacking. That's where ECB comes in: it displays a number of informational windows that allow for easy source code navigation and overview.

53 questions
29
votes
1 answer

Sorting by name the methods presented in the ECB-methods buffer

I'm using ECB (Emacs Code Browser) and my default layout is as follows: ;; +------+-------+--------------------------------------+ ;; | | | ;; | Directories | …
Sebastien Varrette
  • 3,876
  • 1
  • 24
  • 21
22
votes
3 answers

Status of CEDET and ECB in Emacs 24.2

I am a bit confused of what I need to do to run CEDET and ECB in Emacs 24.2.1. The Emacswiki has the following text: How to enable the CEDET tools which were merged with Emacs In Emacs 23.2, CEDET was merged into the main Emacs distribution.…
Amelio Vazquez-Reina
  • 91,494
  • 132
  • 359
  • 564
8
votes
3 answers

Emacs 24.3.1 and ECB 2.40 Error: ECB can only be used with cedet [1.0pre6, 1.1.9]

Running Ubuntu 12.10 with Emacs 24.3.1 and ECB 2.40. Not sure what actually caused this, other than an apt-get update && upgrade I ran a couple days ago. It started when I rebooted my computer and I ran Emacs and did M-X ecb-activate I would get the…
justCookin
  • 267
  • 2
  • 12
6
votes
2 answers

First steps after activating ECB first time

I have ECB installed and autostarted in emacs: (require 'semantic/analyze) (provide 'semantic-analyze) (provide 'semantic-ctxt) (provide 'semanticdb) (provide 'semanticdb-find) (provide 'semanticdb-mode) (provide 'semantic-load) (semantic-mode…
Adobe
  • 12,967
  • 10
  • 85
  • 126
6
votes
3 answers

Emacs ECB Alternative

I've been using Emacs as a PHP IDE for quite some time now (with emacs-starter-kit, ECB, & Geben). With each new release for emacs-starter-kit or Emacs 24, ECB introduces new errors & window issues. It doesn't seem well-maintained anymore (last…
lefnire
  • 2,524
  • 2
  • 26
  • 36
6
votes
1 answer

Installing ECB in emacs 24 in ubuntu

I understand from this question that CEDET is installed in emacs 24 without additional installation, so I don't need to follow those instructions here, or the CEDET part here. I am not using the emacs starter kit, like this answer. So, when I use…
Mittenchops
  • 18,633
  • 33
  • 128
  • 246
6
votes
1 answer

Autocompletion in CEDET?

I'm trying to set up CEDET 2.2 in Emacs 24.3 to provide me with autocompletion, using "A gentle introduction to cedet", but it doesn't exactly want to work the way I want it to. First, I tried to use CEDET's own completion, but that one doesn't…
Daniel Ziltener
  • 647
  • 1
  • 6
  • 21
5
votes
1 answer

How to unload a mode (e.g. unload ECB to restore winner.el functionality)

I find ECB mode quite useful at times due to its souped up Speedbar and nice code browsing capabilities. Unfortunately, I also heavily rely on winner mode, which is incompatible with ECB. Even after I do M-x ecb-deactivate, all the ECB defuns…
Leo Alekseyev
  • 12,893
  • 5
  • 44
  • 44
5
votes
1 answer

Emacs ECB methods window not updating

So I do have Emacs 24.3.1 installed, and from 24 onwards it comes with CEDET. I installed ECB through list-packages and everything seems to work - except methods window refreshing. When I open a file, all methods are displayed and I can jump to them…
user3142453
  • 87
  • 1
  • 7
5
votes
1 answer

Emacs 24.3.1 CEDET 2.0 (built in) and ECB 20131116.1319: Errors during the layout setup of ECB

Using the CEDET that comes with Emacs 24.3.1 and the ECB that is in Melpa, I get the following trying ecb-activate: All requirements for ECB 2.40 fulfilled - Enjoy it! [2 times] The ECB is now deactivated. ecb-clean-up-after-activation-failure: ECB…
M Smith
  • 1,988
  • 15
  • 28
5
votes
1 answer

How do people debug in ECB Emacs?

I want to debug in ECB to use its power. I think there is no built in debugging layout for ECB. (Possible useful windows are: stack, breakpoints, locals, threads, gdb command window etc.) Do I need to create a customized layout in ECB or is there…
aspirin
  • 347
  • 1
  • 5
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
1 answer

Can't set Emacs Speedbar buffer display mode

I often work with differents active buffer on emacs like : source files SQL buffer shell buffer I try to get speedbar always display buffer mode but I can't find any option that can load this display when emacs is started (default is file mode),…
Thomas B. Lze
  • 1,070
  • 7
  • 14
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

Can ECB be restricted to "take over" only the current buffer when it's activated?

From the get go: sorry if I'm not using the proper emacs terminology -- I'm relatively wet behind the ears in the emacs world. Most of my work in emacs is for programming R, and I'm using ESS and ECB to do so quite happily. I'd like to build a…
Steve Lianoglou
  • 7,183
  • 2
  • 25
  • 21
1
2 3 4