From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Richard M. Stallman" Newsgroups: gmane.emacs.devel Subject: Re: Suggestions for the temporary windows used from the minibuffer Date: Tue, 09 Aug 2005 11:19:26 -0400 Message-ID: References: <42F34A82.9070703@student.lu.se> <42F3F3D7.7060506@student.lu.se> <42F68B76.7030109@student.lu.se> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1123601638 18485 80.91.229.2 (9 Aug 2005 15:33:58 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 9 Aug 2005 15:33:58 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Aug 09 17:33:49 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1E2W4w-0005RG-3u for ged-emacs-devel@m.gmane.org; Tue, 09 Aug 2005 17:31:46 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1E2W80-00025Z-9X for ged-emacs-devel@m.gmane.org; Tue, 09 Aug 2005 11:34:56 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1E2W6n-0001o6-SL for emacs-devel@gnu.org; Tue, 09 Aug 2005 11:33:42 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1E2W6i-0001lE-An for emacs-devel@gnu.org; Tue, 09 Aug 2005 11:33:36 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1E2W6h-0001io-5X for emacs-devel@gnu.org; Tue, 09 Aug 2005 11:33:35 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1E2W8v-0005oI-Sl for emacs-devel@gnu.org; Tue, 09 Aug 2005 11:35:53 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1E2Vt0-0005Rt-AD; Tue, 09 Aug 2005 11:19:26 -0400 Original-To: Lennart Borgman In-reply-to: <42F68B76.7030109@student.lu.se> (message from Lennart Borgman on Mon, 08 Aug 2005 00:30:14 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:41796 + (define-key map [(f1)] 'isearch-help-for-help) + (define-key map "\C-h" 'isearch-mode-help) + (define-key map [(meta prior)] 'isearch-scroll-other-down) + (define-key map [(meta next)] 'isearch-scroll-other-up) + (define-key map [(prior)] 'isearch-scroll-other-down) + (define-key map [(next)] 'isearch-scroll-other-up) I think there are already too many useful keys that fail to exit isearch as I expect them to. (Yesterday the fact that M-c is special in isearch caused me trouble.) So I won't say yes to this. I might perhaps say yes to part of it, after some discussion. +(defun isearch-mode-help-when-active() + (interactive) What is this function for? What job does it do? It needs to be explained.