From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.help Subject: RE: Problem binding f5 when using Icicles Date: Mon, 10 Sep 2007 15:58:37 -0700 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1189466618 3246 80.91.229.12 (10 Sep 2007 23:23:38 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 10 Sep 2007 23:23:38 +0000 (UTC) To: Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Sep 11 09:23:25 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IUzjx-0006Cj-UP for geh-help-gnu-emacs@m.gmane.org; Tue, 11 Sep 2007 09:00:54 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IUsFb-0007GU-B0 for geh-help-gnu-emacs@m.gmane.org; Mon, 10 Sep 2007 19:01:03 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IUsFO-0007GG-0o for help-gnu-emacs@gnu.org; Mon, 10 Sep 2007 19:00:50 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IUsFL-0007G4-L1 for help-gnu-emacs@gnu.org; Mon, 10 Sep 2007 19:00:48 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IUsFL-0007G1-Ea for help-gnu-emacs@gnu.org; Mon, 10 Sep 2007 19:00:47 -0400 Original-Received: from rgminet01.oracle.com ([148.87.113.118]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IUsFK-0007mE-UA for help-gnu-emacs@gnu.org; Mon, 10 Sep 2007 19:00:47 -0400 Original-Received: from rgmgw2.us.oracle.com (rgmgw2.us.oracle.com [138.1.186.111]) by rgminet01.oracle.com (Switch-3.2.4/Switch-3.1.6) with ESMTP id l8AN0cY2001686 for ; Mon, 10 Sep 2007 17:00:38 -0600 Original-Received: from acsmt350.oracle.com (acsmt350.oracle.com [141.146.40.150]) by rgmgw2.us.oracle.com (Switch-3.2.4/Switch-3.2.4) with ESMTP id l8AN0aDp030793 for ; Mon, 10 Sep 2007 17:00:37 -0600 Original-Received: from dhcp-4op11-4op12-west-130-35-178-203.us.oracle.com by acsmt351.oracle.com with ESMTP id 3200615091189465117; Mon, 10 Sep 2007 15:58:37 -0700 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Importance: Normal In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-Brightmail-Tracker: AAAAAQAAAAI= X-Brightmail-Tracker: AAAAAQAAAAI= X-Whitelist: TRUE X-Whitelist: TRUE X-Detected-Kernel: Linux 2.4-2.6 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:47456 Archived-At: > > I have long used the key f5 to mean delete-other-windows(). But when = I > > use icicles it overrides f5. I tried global-unset-key plus set-key = but > > does not get rid of this overriding. How can I take back control = over > > f5? >=20 > I think I solved this by putting this *before* the (require 'icicles) = line > in my .emacs: >=20 > (setq icicle-bind-top-level-commands-flag nil) Yes, that option prevents Icicles from binding any top-level commands. = You can also use Customize to set it. As the doc says: "If you change this from t to nil, then you must restart Emacs for it to take effect. Going from nil to t requires no restart. For this option to have an effect upon startup, it must be set before you enter Icicle mode. This means that you must ensure that the code that sets it is invoked before you enter Icicle mode. If you use Customize to change this option, then ensure that the code inserted by Customize into your `user-init-file' or your `custom-file' is invoked before you enter Icicle mode."