From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tyler Newsgroups: gmane.emacs.help Subject: Re: key binding with windows and menu keys Date: Mon, 15 Aug 2005 09:09:47 -0400 Organization: Bell Sympatico Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1124112479 11004 80.91.229.2 (15 Aug 2005 13:27:59 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 15 Aug 2005 13:27:59 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Aug 15 15:27:59 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1E4ezQ-0000TP-DS for geh-help-gnu-emacs@m.gmane.org; Mon, 15 Aug 2005 15:26:56 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1E4f2m-0003mU-Vt for geh-help-gnu-emacs@m.gmane.org; Mon, 15 Aug 2005 09:30:25 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news3.google.com!news.glorb.com!atl-c03.usenetserver.com!news.usenetserver.com!wns13feed!worldnet.att.net!207.35.177.252!nf3.bellglobal.com!nf1.bellglobal.com!nf2.bellglobal.com!news20.bellglobal.com.POSTED!not-for-mail User-Agent: Debian Thunderbird 1.0.6 (X11/20050802) X-Accept-Language: en-us, en Original-Newsgroups: gnu.emacs.help In-Reply-To: Original-Lines: 34 Original-NNTP-Posting-Host: 70.48.62.191 Original-X-Complaints-To: abuse@sympatico.ca Original-X-Trace: news20.bellglobal.com 1124111348 70.48.62.191 (Mon, 15 Aug 2005 09:09:08 EDT) Original-NNTP-Posting-Date: Mon, 15 Aug 2005 09:09:08 EDT Original-Xref: shelby.stanford.edu gnu.emacs.help:133209 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:28735 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:28735 Wow, that's perfect! It works just as you said, and it's a great idea to have it bound to the other-window command as well. Thanks for the tip! Tyler Angelina Carlton wrote: > Tyler writes: > >>Thanks again for the help, and if anyone knows another way to get at >>the windows key... > > > I asked in irc about this and for me, on Debian unstable this works: > > run xkbprint :0.0 /tmp/o.ps > this makes a diagram of your layout > > gv /tmp/o.ps > take a look at what the keys are, my left logo key is F13 key 115, > my right logo key is Super_R key 116 > > so the command: > xmodmap -e "keycode 115 = F13" enables the left logo key > (i placed this command in my xfce4 start up script) > > Then in my .emacs > > ;; Jump to other window > (global-set-key [(f13)] 'other-window) > > hopefully that works for you too. > > (thank you edrx in irc!) >