From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: History for query replace pairs Date: Sat, 08 Nov 2014 10:46:15 +0200 Message-ID: <83oasiqduw.fsf@gnu.org> References: <87lhovik5c.fsf@lifelogs.com> <87wq8egh3r.fsf@lifelogs.com> <87ppe4zv0t.fsf@mail.jurta.org> <87k34ba5sn.fsf@mail.jurta.org> <87siiq4gpv.fsf@mail.jurta.org> <87iojduj9n.fsf@mail.jurta.org> <87k33nyirh.fsf@mail.jurta.org> <87sii0becx.fsf@lifelogs.com> <87ioivx2xk.fsf@mail.jurta.org> <87h9yfaihq.fsf@lifelogs.com> <87zjc6pnpg.fsf@mail.jurta.org> <87r3xhnsjb.fsf@mail.jurta.org> <87zjc2pou7.fsf@mail.jurta.org> <87zjc2fqx2.fsf@lifelogs.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE X-Trace: ger.gmane.org 1415436415 30807 80.91.229.3 (8 Nov 2014 08:46:55 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 8 Nov 2014 08:46:55 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Nov 08 09:46:48 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 1Xn1fS-00046A-Hc for ged-emacs-devel@m.gmane.org; Sat, 08 Nov 2014 09:46:46 +0100 Original-Received: from localhost ([::1]:35263 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xn1fS-0005CJ-2E for ged-emacs-devel@m.gmane.org; Sat, 08 Nov 2014 03:46:46 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34793) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xn1fK-0005Bz-Do for emacs-devel@gnu.org; Sat, 08 Nov 2014 03:46:43 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xn1fF-0001Bv-5B for emacs-devel@gnu.org; Sat, 08 Nov 2014 03:46:38 -0500 Original-Received: from mtaout24.012.net.il ([80.179.55.180]:49112) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xn1fE-00019E-Td for emacs-devel@gnu.org; Sat, 08 Nov 2014 03:46:33 -0500 Original-Received: from conversion-daemon.mtaout24.012.net.il by mtaout24.012.net.il (HyperSendmail v2007.08) id <0NEP00A00OMOW200@mtaout24.012.net.il> for emacs-devel@gnu.org; Sat, 08 Nov 2014 10:39:13 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout24.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NEP002UGPDD4X90@mtaout24.012.net.il> for emacs-devel@gnu.org; Sat, 08 Nov 2014 10:39:13 +0200 (IST) In-reply-to: <87zjc2fqx2.fsf@lifelogs.com> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 80.179.55.180 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:176569 Archived-At: > From: Ted Zlatanov > Date: Fri, 07 Nov 2014 19:59:37 -0500 >=20 > On Sat, 08 Nov 2014 01:34:27 +0200 Juri Linkov wro= te:=20 >=20 > JL> The initial implementation is installed. Pretty sure more chan= ges > JL> might be necessary, such as e.g. when some users unwilling to u= se > JL> this feature can set `query-replace-from-to-separator' to nil, > JL> but maybe this should be more customizable. >=20 > I really like it, thank you for implementing it. It behaves so > intuitively that I don't have to think about it. I briefly tried it (will do more testing once NEWS or the manual describes the feature in detail), and saw one problem: the Unicode character =E2=86=92 (u+2192) is a problem on TTYs that can't encode i= t or on GUI frames that use font without a glyph for it. So I think we need = a fallback for those cases (e.g., using char-displayable-p to detect th= em). Thanks.