Emacs speedbar does not show all class's methods

681 views Asked by At

As in title, I have middle size class CPP file of ~400 lines of code. There are some new methods not being shown when unfolding my class in the speedbar frame. Looks like speedbar displays the tree from several previous iterations of my code . P.S. Update Command doesn't help. GNU Emacs 24.3.1 (x86_64-suse-linux-gnu, GTK+ Version 3.8.4) . Speedbar installed from the melpa package manager.

1

There are 1 answers

0
paul424 On

I'm solving my own problem: seems speedbar ain't parse well if the semantics mode is turned off.

;; CEDET
(global-ede-mode 1)
(require 'semantic/sb)
(semantic-mode 1)