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: Using w32's find file dialog from the keyboard Date: Fri, 11 Aug 2006 19:15:43 +0300 Message-ID: References: NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1155312957 13576 80.91.229.2 (11 Aug 2006 16:15:57 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 11 Aug 2006 16:15:57 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Aug 11 18:15:56 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 1GBZfv-0005XH-Mo for geh-help-gnu-emacs@m.gmane.org; Fri, 11 Aug 2006 18:15:56 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GBZfv-0008Gw-1m for geh-help-gnu-emacs@m.gmane.org; Fri, 11 Aug 2006 12:15:55 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GBZfj-0008Em-9w for help-gnu-emacs@gnu.org; Fri, 11 Aug 2006 12:15:43 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GBZfh-00089g-8f for help-gnu-emacs@gnu.org; Fri, 11 Aug 2006 12:15:42 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GBZfh-00089S-5P for help-gnu-emacs@gnu.org; Fri, 11 Aug 2006 12:15:41 -0400 Original-Received: from [192.114.186.20] (helo=nitzan.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GBZkr-0000tu-Hb for help-gnu-emacs@gnu.org; Fri, 11 Aug 2006 12:21:01 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-80-230-150-252.inter.net.il [80.230.150.252]) by nitzan.inter.net.il (MOS 3.7.3-GA) with ESMTP id EJV43187 (AUTH halo1); Fri, 11 Aug 2006 19:15:39 +0300 (IDT) Original-To: help-gnu-emacs@gnu.org In-reply-to: (message from Mathias Dahl on Fri, 11 Aug 2006 15:40:36 +0200) 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:36605 Archived-At: > From: Mathias Dahl > Date: Fri, 11 Aug 2006 15:40:36 +0200 > > Is there a way to open the file selector on w32 using the keyboard? I know of three ways: . Type F10, which will activate the menu bar, then select the File menu and "Open File" item with arrow keys and RET. . Set the variable w32-pass-alt-to-system to a non-nil value, then pressing Alt will activate the menu; the rest is like in the previous method. . Cheat: (let (last-nonmenu-event) (call-interactively 'find-file)) > As it is now, the only way to open it is by using the File menu. Out of curiosity: why would you wish to open the file selector so badly?