I define one function in my .emacs, I want to activate ECB and goto to directory when I enter f12, but it does not work
(defun my-toggle-ecb ()
(ecb-activate)
(ecb-goto-window-directories)
)
(global-set-key (kbd "<f12>") 'my-toggle-ecb)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yea, that’s one of Emacs’ odder quirks. Unless you declare that a function is interactive, there’s no way way to call it directly. Luckily it’s easy:
Your keybinding remains the same. Have fun!