I have ECB installed and autostarted in emacs:
(require 'semantic/analyze)
(provide 'semantic-analyze)
(provide 'semantic-ctxt)
(provide 'semanticdb)
(provide 'semanticdb-find)
(provide 'semanticdb-mode)
(provide 'semantic-load)
(semantic-mode 1)
(setq stack-trace-on-error t)
(require 'ecb)
(require 'ecb-autoloads)
(setq ecb-auto-activate 1)
(ecb-winman-winring-enable-support)
ECB shows its "First steps after activating ECB first time" info node each time. How do I stop it doing that?
Edit:
Of course brute force solves it:
(run-with-idle-timer 0.05 nil '(lambda () (kill-buffer "*info*")))
but I thought - may be there is a ECB variable that knows wither it activation of the ECB is for the first time or not.
Edit:
So one has to put for example:
(setq ecb-source-path (quote (("/home/boris/its/plts" "plts"))))
This tell ECB that the project is at /home/boris/its/plts
, and should be reffered to as plts
.
'(ecb-source-path (quote (("/home/boris/its/plts" "plts"))))
– Zerline