I binded function semantic-symref to key C-c C-r like this:

(global-set-key (kbd "C-c C-r") 'semantic-symref)

everytime I pressed C-c C-r, it prompted:

Find references for xxxxx? (y or n)

How can I answer it automatically? I tryed using lambda function like this, but failed

(global-set-key (kbd "C-c C-r") (lambda() (interactive) (semantic-symref "yes")))

link|improve this question
feedback

1 Answer

up vote 6 down vote accepted

You can advice semantic-symref with something like :

(defadvice semantic-symref (around stfu activate)
      (flet ((yes-or-no-p (&rest args) t)
             (y-or-n-p (&rest args) t))
        ad-do-it))

Beware that you're locally bypassing all confirmations, so you may catch further (other) questions triggered by semantic-symref itself.

link|improve this answer
thx a lot, it works :-) – crackcell Jul 6 '11 at 10:22
+1 stfu, hee hee – Trey Jackson Jul 6 '11 at 15:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.