Emacs Code Browser - A source code browser for Emacs
0
votes
0answers
28 views
Unexpected behavior of 'other-window' function when using ECB
I'm using the ecb package from the repository in emacs 24.3, I believe it is 2.40.
Whenever I run "ecb-activate" to get my sidebar and layout setup, the behavior of the "other-window" command changes ...
1
vote
1answer
113 views
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 ...
0
votes
0answers
64 views
Emacs: Balance windows horizontally with ECB
I usually code with emacs (24.3.1) divided in two or three columns using C-x 3, each window with equal width. I recently found out that what one can automagically balance their widths (or heights if ...
1
vote
2answers
154 views
Emacs: How can I automatically start a python interpreter in python-mode?
After every Emacs startup in python-mode I need to open the interpreter in a different buffer and
change the size of the new buffer that it fits emacs-code-browser's history. I want to automate
this ...
0
votes
0answers
25 views
multi-term is affected by ECB
I use multiterm,and when I run the command "(multi-term-dedicated-toggle)", the dedicated term will first appear, but next time I run this function , the term window should be closed, but it did not, ...
0
votes
1answer
46 views
variables are not tagged by etags
I've used etags to generate tags to be used in emacs. but I think it is so weak that there is no clue about variable definitions.variables ( and God knows the other problems) are not logged by etags.
...
0
votes
0answers
31 views
not having ecb-compile-*
I've install cedet and ecb on my emacs and ecb seems right but sth is wrong here. the commands like ecb-compile-* doesn't exist! and I need them to show compile section ( it isn't shown)
And the only ...
0
votes
0answers
76 views
Emacs freezes on adding remote tramp path to ecb-source-path
I'm trying to add a remote directory to my ecb directory pane by modifying the ecb-source-path variable in my .emacs file under Emacs 24.2, ecb 2.40, OS X 10.8.2. The following works via tramp from ...
2
votes
1answer
171 views
Emacs ECB - Saving and Restoring a Custom Layout
In emacs with ecb running as a minor mode, I would like to set my layout as default. So once emacs starts, I go drag the pane on the left side to change my layout and when I say "Store current window ...
1
vote
0answers
39 views
ecb defining custom layout
I want to construct a ecb layout that has two special buffers. one is the output
of semantic-symref-symbol and the other is semantic-ia-fast-jump. How do I do this ?
I have cedet working and I have ...
12
votes
2answers
2k views
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, ...
3
votes
0answers
121 views
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 ...
2
votes
2answers
105 views
How can I prevent emacs switching to some windows with C-x o?
Is there any way to set some windows non visitable in emacs?
For example, in gdb show-many-windows view, I dont want to switch to local variables window or stack window every time.
1
vote
1answer
88 views
How to rebuild directory buffer in ECB?
This is basically the question. I've added a new directory, since opening ECB, but the directory buffer isn't updated. How do I force it to update? Tried C-c . s and revert-buffer in the directories ...
1
vote
2answers
373 views
ECB vs global vs cscope .. in emacs
I've mainly used cscope only to browse source code in emacs.
It's very hard to google what other people mainly use to browse source code.
Because ECB(emacs code browser) would come up fairly top due ...
1
vote
2answers
425 views
ECB: can't access /
On updating to Kubuntu 12.04, and Emacs 24.1.50 - I can't access / folder in ecb's tree browser. When I try to get there, or just activate the ecb Emacs opens *tramp/scpc C* buffer and it says:
ssh: ...
4
votes
1answer
141 views
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 ...
2
votes
0answers
45 views
ECB: truncate lines in symbol definition buffer
Emacs ECB 2.40 has a layout called left-symboldef, it has the *ECB Symboldefinition* buffer, and I want to set
(setq truncate-lines nil)
there. I browsed the customized group:
M-x customize-group ...
0
votes
1answer
26 views
ECB: tag file prompts?
I've been working on ECB for a small time - and suddenly ECB started to ask me which tags file to open. I've no idea what it talks about - my source codes are usually small... So I think I can be ...
4
votes
1answer
110 views
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)
...
5
votes
1answer
276 views
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 ...
5
votes
3answers
2k views
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 ...
1
vote
1answer
136 views
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 ...
0
votes
1answer
665 views
emacs ebrowse and ecb tutorials
I've been setting my IDE based on emacs. But I have problems with finding tutorials on some emacs tools. Is there any good tutorial on how to use ebrowse and ecb? I don't find anything useful online ...
0
votes
1answer
76 views
Why ECB does not jump to tags when hitting Return?
I have emacs 23.1 on Linux, CEDET 1.0.1, ECB snapshot. When opening a Python code file, I tried to move cursor on a function tag in the ECB methods buffer, and hit Return to jump to the function ...
28
votes
1answer
417 views
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:
;; +------+-------+--------------------------------------+
;; | | |
;; | ...
0
votes
1answer
178 views
Emacs ECB Method window not showing all methods
I cannot understand why I only see a few methods in ECB method window and if I click on half of shown methods, I get:
ECB 2.40 - Warning: The tag-visit-function `ecb-tag-visit-smart-tag-start' moves ...
0
votes
1answer
329 views
How to set “ecb-source-path” of ecb of Emacs?
This stupid question spent me a whole day, and I still don't know how to set it.
I'm new to emacs and ecb -- I installed it the first time today. The I found the "directory window" was empty when I ...
2
votes
1answer
405 views
Git Version Control in Emacs Code Browser
I recently installed emacs code browser and noticed that CVS is integrated into it. Can ecb configured to use git as well? Thanks.
1
vote
0answers
118 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 ...
1
vote
1answer
114 views
Make ECB of emacs open by default for .c, .cpp and .cu files
I recently discovered the Emacs code browsing package (ECB) and it seems to be very useful.
I would like to activate ECB mode by default only when I open .c, .cu, cpp and .py files.
Please let me ...
1
vote
2answers
684 views
One Directory in Emacs ECB ecb-source-path?
I'm setting up emacs for Ruby on Rails development, and would like the ECB window to show only the directory for the project I'm working on. Is that possible?
Let's assume that I start emacs after I ...
1
vote
1answer
209 views
Emacs ECB cursor invisible in directory tree
I've installed Emacs on OSX Snow Leopard using Homebrew (brew install emacs --cocoa). Having brought over my .emacs.d from Ubuntu, everything seems ok except when browsing the directory tree the ...
1
vote
4answers
307 views
Is there any ECB (or other)-enhanced find file mojo?
Can I use ECB (or some other project aware thing, like eproject, ibuffer, etc.) to enhance emacs's find-file goodness?
Imagine this scenario: I have several projects/directories specified in my ...
3
votes
1answer
190 views
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 ...
1
vote
1answer
488 views
Emacs Semantic/ECB namespace-struct C++ confusion
I'm trying to setup ECB to work with C++ sources.
seemingly, semantic or ECB has problem determining whenever a function declarant with explicit namespace, namespace:: function , is really in the ...
2
votes
1answer
664 views
How to remove directory window and add a cscope window in Emacs ECB?
Yesterday I installed ECB on my Emacs, and I find method window and history window quite useful. But directory tree window and source window less useful, if I can hide them I will save more space for ...
0
votes
1answer
833 views
How to programmatically disable ECB menu item for a particular list item?
I have a custom document library which is based on default document library. I'd like to disable Edit physical document for some of the documents depending on their property.
1
vote
1answer
1k views
Installing CEDET 1.0pre6 as user while keeping CEDET 1.0pre4 deb package installed
My work computer (Ubuntu 8.10) has CEDET version 1.0pre4 installed, and I'm trying to install the newest version of CEDET (1.0pre6) in my local directory (the ultimate goal, upgrading ECB to the ...
2
votes
2answers
818 views
How do I run a command just after the emacs frame has been rendered?
I'm trying to figure out how to use Emacs Code Browser (ECB) and one of the things you can do with it is set ecb-windows-width to decide how wide the ecb windows are. The problem is this sequence:
...
1
vote
3answers
1k views
how to apply custom action in ECB only for document item
I have added a menu item in edit control block(ECB) in document library(using following msdn article http://msdn.microsoft.com/en-us/library/ms473643.aspx)
Now i found that the custom action(menu ...
