Reputation: 2361
I am new to Emacs on Windows XP and have multiple queries which I could not find/understand after a lot of search.
(speedbar 1)
(add-to-list 'speedbar-fetch-etags-parse-list
'("\\.c" . speedbar-parse-c-or-c++tag))
I see the speedbar startup but it never shows the functions. Maybe I need to install etags but cannot find it. I also found gtags but could never find a binaryUpvotes: 1
Views: 2978
Reputation: 28531
For 3, there are two options:
just type "/ssh:blabla" at the end of the pre-inserted directory (this directory will be ignored as witnessed by it becoming grey).
do C-a C-k
to erase the content of the minibuffer.
For 5, there is repeat-complex-command
bound to C-x ESC ESC
and there is repeat
bound to C-x z
.
Upvotes: 2
Reputation: 87164
For C, C++, and other languages, supported by CEDET/Semantic, the Speedbar is able to show functions & other objects. But you need to setup Semantic correctly, for example, you can use my article in CEDET.
As I understand, to enable linum-mode globally, you need to put (global-linum-mode 1)
into your ~/.emacs
Upvotes: 4