From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Filter list-buffers by a regexp (interactively) Date: Thu, 07 Aug 2014 07:17:48 -0400 Message-ID: References: <87oaw9fkyv.fsf@bzg.ath.cx> <87fvh8lrii.fsf@bzg.ath.cx> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1407410306 10189 80.91.229.3 (7 Aug 2014 11:18:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 7 Aug 2014 11:18:26 +0000 (UTC) Cc: emacs-devel@gnu.org To: Bastien Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Aug 07 13:18:18 2014 Return-path: Envelope-to: ged-emacs-devel@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 1XFLi5-0005g8-Qv for ged-emacs-devel@m.gmane.org; Thu, 07 Aug 2014 13:18:17 +0200 Original-Received: from localhost ([::1]:45623 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XFLi5-0007dd-AJ for ged-emacs-devel@m.gmane.org; Thu, 07 Aug 2014 07:18:17 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:38735) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XFLhw-0007cZ-2S for emacs-devel@gnu.org; Thu, 07 Aug 2014 07:18:15 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XFLho-0008QM-JN for emacs-devel@gnu.org; Thu, 07 Aug 2014 07:18:08 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:33020) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XFLhg-0008MT-El; Thu, 07 Aug 2014 07:17:52 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ArUGAIDvNVPAqyKr/2dsb2JhbABZgwaDSsA9gRcXdIIlAQEBAQIBViMFCws0EhQYDSSIBAjSGReOegeEOASrA4NMIQ X-IPAS-Result: ArUGAIDvNVPAqyKr/2dsb2JhbABZgwaDSsA9gRcXdIIlAQEBAQIBViMFCws0EhQYDSSIBAjSGReOegeEOASrA4NMIQ X-IronPort-AV: E=Sophos;i="4.97,753,1389762000"; d="scan'208";a="82360829" Original-Received: from 192-171-34-171.cpe.pppoe.ca (HELO pastel.home) ([192.171.34.171]) by ironport2-out.teksavvy.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 07 Aug 2014 07:17:49 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 0590660787; Thu, 7 Aug 2014 07:17:48 -0400 (EDT) In-Reply-To: <87fvh8lrii.fsf@bzg.ath.cx> (Bastien's message of "Thu, 07 Aug 2014 08:53:41 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 206.248.154.181 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:173467 Archived-At: >>> The patch below allows to use C-u C-u C-x C-b to interactively enter >>> a regular expression to only list buffers with a matching name. >> We generally try to avoid using things like C-u C-u. > Good to know. (I don't dare looking at changes we need in Org to > follow this recommendation. But I will.) Org being its own program, it's not too terrible if it has its own set of conventions. But C-x C-b is a "core" command. > Maybe adding a new command and bind it to C-x C-B? Or perhaps > this is also not recommended? C-B is pretty hard to get to in some cases (e.g. ttys), so indeed, we prefer not to do that. But maybe we can change the meaning of C-u C-x C-b, or something like that. Stefan