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: Delete Help Window - restore window config Date: Wed, 28 Jan 2015 13:03:40 -0800 (PST) Message-ID: <71bb5724-c47a-4036-b9a0-0463e21fd09b@default> References: <20150128035737.GA1459@mail.akwebsoft.com> <20150128163414.GD1459@mail.akwebsoft.com> <3b9f0718-d5b8-4c7f-b801-cb4ac717e7fb@default> <20150128184636.GF1459@mail.akwebsoft.com> <53977253-bb92-4f40-87e8-348c25f8955c@default> <87386uwrom.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1422479059 6583 80.91.229.3 (28 Jan 2015 21:04:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 28 Jan 2015 21:04:19 +0000 (UTC) Cc: Tim Johnson , Emacs To: torys.anderson@gmail.com Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jan 28 22:04:18 2015 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 1YGZmb-0008Ne-6I for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Jan 2015 22:04:17 +0100 Original-Received: from localhost ([::1]:55957 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGZma-0003yX-J9 for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Jan 2015 16:04:16 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50841) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGZmJ-0003vi-CG for Help-gnu-emacs@gnu.org; Wed, 28 Jan 2015 16:04:00 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YGZm8-0005ZW-1v for Help-gnu-emacs@gnu.org; Wed, 28 Jan 2015 16:03:59 -0500 Original-Received: from userp1040.oracle.com ([156.151.31.81]:47104) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGZm7-0005ZP-SW for Help-gnu-emacs@gnu.org; Wed, 28 Jan 2015 16:03:48 -0500 Original-Received: from ucsinet22.oracle.com (ucsinet22.oracle.com [156.151.31.94]) by userp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id t0SL3grQ023923 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 28 Jan 2015 21:03:42 GMT Original-Received: from userz7022.oracle.com (userz7022.oracle.com [156.151.31.86]) by ucsinet22.oracle.com (8.14.5+Sun/8.14.5) with ESMTP id t0SL3fJK007160 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 28 Jan 2015 21:03:42 GMT Original-Received: from abhmp0013.oracle.com (abhmp0013.oracle.com [141.146.116.19]) by userz7022.oracle.com (8.14.5+Sun/8.14.4) with ESMTP id t0SL3fL2007102; Wed, 28 Jan 2015 21:03:41 GMT In-Reply-To: <87386uwrom.fsf@gmail.com> X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.8.2 (807160) [OL 12.0.6691.5000 (x86)] X-Source-IP: ucsinet22.oracle.com [156.151.31.94] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 156.151.31.81 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:102347 Archived-At: > I think he's talking about using it on a temporary basis with just the > *scratch* buffer, for instance? This would be nice, and I'd like to know = if > its possible; but, like Helm, I've never found a way to load them any way > other than globally/until session ends. Libraries are not loaded only for a particular buffer. You can turn modes on/off for a particular buffer. The question was about loading. But if there is a question about turning Icicle mode on for only a particular buffer then the answer is no - `icicle-mode' is a global minor mode. Just toggle the mode when you enter/leave the buffer, if you like. Or do that on a mode hook. You can also restrict Icicle mode to a given scope (e.g. within a given command) using macro `icicle-with-icy-mode-ON' or macro `icicle-with-icy-mode-OFF'. Use eval-when-compile to load the file of macros, `icicles-mac.el', if you use either macro in your code.