From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: w32-pass-lwindow-to-system (& ...rwindow) Date: Sun, 24 Sep 2006 19:45:33 +0300 Message-ID: References: Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1159116361 19325 80.91.229.2 (24 Sep 2006 16:46:01 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 24 Sep 2006 16:46:01 +0000 (UTC) Cc: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Sep 24 18:45:59 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GRX71-0005ra-Fc for geh-help-gnu-emacs@m.gmane.org; Sun, 24 Sep 2006 18:45:51 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GRX70-0005lR-Qv for geh-help-gnu-emacs@m.gmane.org; Sun, 24 Sep 2006 12:45:50 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GRX6o-0005lC-GS for help-gnu-emacs@gnu.org; Sun, 24 Sep 2006 12:45:38 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GRX6l-0005kb-0m for help-gnu-emacs@gnu.org; Sun, 24 Sep 2006 12:45:38 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GRX6k-0005kU-U4 for help-gnu-emacs@gnu.org; Sun, 24 Sep 2006 12:45:34 -0400 Original-Received: from [192.114.186.20] (helo=nitzan.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GRXAy-0006Yu-LW for help-gnu-emacs@gnu.org; Sun, 24 Sep 2006 12:49:56 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-80-230-39-253.inter.net.il [80.230.39.253]) by nitzan.inter.net.il (MOS 3.7.3-GA) with ESMTP id ESU21732 (AUTH halo1); Sun, 24 Sep 2006 19:45:31 +0300 (IDT) Original-To: "B. T. Raven" In-reply-to: (ecinmn@alcisp.com) 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:37591 Archived-At: > From: "B. T. Raven" > Date: Sat, 23 Sep 2006 13:17:57 -0500 > > Probably not relevant, but the following work alright: > > (global-set-key [(super g)] 'goto-line) > (global-set-key [(super b)] 'bury-buffer) > (global-set-key [(super k)] (lambda () (interactive) (kill-line 0 ))) FWIW, another workaround is to use a modified key; e.g., the following should work: (global-set-key [(super shift r)] 'goto-line) alternatively, use the normal binding: (global-set-key [(super r)] 'goto-line) but hold the Shift key while you press LWindow-r. The Run dialog will not pop up because of Shift being down, but Emacs will translate LWindow-R to LWindow-r, and invoke your function.