From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thorsten Jolitz Newsgroups: gmane.emacs.help Subject: Re: Commands with more than one keybinding in menus Date: Tue, 13 Aug 2013 16:52:45 +0200 Message-ID: <87siydlk1u.fsf@gmail.com> References: <87ob92lytv.fsf@gmail.com> <87a9kl7ld0.fsf@web.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1376405610 31434 80.91.229.3 (13 Aug 2013 14:53:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 13 Aug 2013 14:53:30 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Aug 13 16:53:30 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1V9FyT-00071f-L5 for geh-help-gnu-emacs@m.gmane.org; Tue, 13 Aug 2013 16:53:29 +0200 Original-Received: from localhost ([::1]:35261 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9FyT-0007hb-A1 for geh-help-gnu-emacs@m.gmane.org; Tue, 13 Aug 2013 10:53:29 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:53688) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9Fy6-0007WK-J3 for help-gnu-emacs@gnu.org; Tue, 13 Aug 2013 10:53:13 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V9Fxz-00041V-2A for help-gnu-emacs@gnu.org; Tue, 13 Aug 2013 10:53:06 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:34463) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9Fxy-00041J-RD for help-gnu-emacs@gnu.org; Tue, 13 Aug 2013 10:52:58 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1V9Fxx-0006cV-5A for help-gnu-emacs@gnu.org; Tue, 13 Aug 2013 16:52:57 +0200 Original-Received: from e178190142.adsl.alicedsl.de ([85.178.190.142]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 13 Aug 2013 16:52:57 +0200 Original-Received: from tjolitz by e178190142.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 13 Aug 2013 16:52:57 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 37 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: e178190142.adsl.alicedsl.de User-Agent: Gnus/5.130002 (Ma Gnus v0.2) Emacs/24.3 (gnu/linux) Cancel-Lock: sha1:Oz3uFDm4Pa05JCSF1mwo+FFj5mI= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:92842 Archived-At: Michael Heerdegen writes: > Thorsten Jolitz writes: > >> Hi List, >> >> if a command that should appear in the menu for a mode has more than one >> keybinding - how do I specify which binding shows up in the menu? >> >> As an example, say command `demote' of 'my-mode' is bind to 'C-c C-c >' >> and 'C-M-', and I want the latter binding to appear in the menu >> entry of 'my-mode'. Is that a matter of definition order - the binding >> last defined in the mode's library is shown - or is there a way to >> specify the displayed binding in the menu-map definition? > > Dunno about the order, but presumably you shouldn't rely on any rule. > > You can specify a key binding when defining the menu explicitly - see > > (info "(elisp) Extended Menu Items") > thats what I needed, must have overlooked the ,---------------------------------------------------------------------- | `:key-sequence KEY-SEQUENCE' | This property specifies which key sequence is likely to be bound | to the same command invoked by this menu item. `---------------------------------------------------------------------- property when searching the manual. Thanks. -- cheers, Thorsten