Hadron Quark wrote:
I have a c-mode-common hook which activates ecb (code browser) when I
load a c file. But how to activate it when I switch to an existing c
buffer? I am already switching layouts with winring, but wish for the
ecb layout to pop up if I switch from a single buffer frame to an
already loaded c file.
c-mode-common-hook is the wrong place to do that. But something like
this might work for you:
(defun ecb-window-configuration ()
(when (derived-mode-p 'c-mode)
;; activate ECB here
))
(add-hook 'window-configuration-change-hook 'ecb-window-configuration)
--
Kevin
|