From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Daniel Colascione Newsgroups: gmane.emacs.devel Subject: Re: iswitchb Date: Wed, 19 Mar 2008 23:08:25 -0400 Organization: Merrill Press Message-ID: <200803192308.25836.danc@merrillpress.com> References: <20080320025128.GB7406@rzlab.ucr.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1205982680 23559 80.91.229.12 (20 Mar 2008 03:11:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 20 Mar 2008 03:11:20 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Mar 20 04:11:50 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JcBC1-0004Gj-Nr for ged-emacs-devel@m.gmane.org; Thu, 20 Mar 2008 04:11:50 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JcBBR-0000pP-GZ for ged-emacs-devel@m.gmane.org; Wed, 19 Mar 2008 23:11:13 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JcBBE-0000ex-Ii for emacs-devel@gnu.org; Wed, 19 Mar 2008 23:11:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JcBBA-0000Yc-07 for emacs-devel@gnu.org; Wed, 19 Mar 2008 23:10:59 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JcBB9-0000YD-Iq for emacs-devel@gnu.org; Wed, 19 Mar 2008 23:10:55 -0400 Original-Received: from vpn.merrillpress.com ([64.61.107.78]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JcBB9-0007Mj-6l for emacs-devel@gnu.org; Wed, 19 Mar 2008 23:10:55 -0400 Original-Received: from cpe-76-180-38-217.buffalo.res.rr.com ([76.180.38.217] helo=[192.168.1.50]) by mars.merrillpress.net with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.43) id 1JcBB7-0007zP-QF for emacs-devel@gnu.org; Wed, 19 Mar 2008 23:10:53 -0400 User-Agent: KMail/1.9.9 In-Reply-To: <20080320025128.GB7406@rzlab.ucr.edu> Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:93031 Archived-At: On Wednesday 19 March 2008 10:51:28 pm Don Armstrong wrote: > > - C-s and C-r to cycle through matches are not intuitive enought, > > some better idea about how to disambiguate buffer names should be > > proposed. > > This is how most everything does forward and reverse searching, so > it's not that unintuitive. What about this? (define-key iswitchb-mode-map [(left)] #'iswitchb-prev-match) (define-key iswitchb-mode-map [(right)] #'iswitchb-next-match) I think of buffer switching as a funny kind of isearch.