Is there a way to show how documents call hidden level 2 files in the speed panel? For example. .emacs
Long answer
It turns out that files that are not being watched are controlled by a regular expression
Usually this is "^\\(\\..*\\)\\'" , which, I think, means everything that starts with a dot
Set up regex with:
(setq speedbar-directory-unshown-regexp "^$")
does a trick showing everything.
emacs
John lawrence aspden
source share