emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: menu system in recent Emacs?


From: Thien-Thi Nguyen
Subject: Re: menu system in recent Emacs?
Date: Thu, 03 May 2012 03:12:27 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.92 (gnu/linux)

() Ted Zlatanov <address@hidden>
() Wed, 02 May 2012 20:53:31 -0400

   I would really like it to show the list of choices immediately,
   as if the user pressed `TAB'.  Can that be fed into the
   function somehow as a synthetic keypress?

That would be:

(progn
  (push ?\t unread-command-events)
  (completing-read 
   "Here are some choices:\n- A\t- B\n- C\t- D\nChoose one: "
   '("A" "B" "C" "D")))

which can now be simplified to:

(progn
  (push ?\t unread-command-events)
  (completing-read 
   "CHOICE EXPLANATION\nChoose one: "
   '("A" "B" "C" "D")))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]