From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: RFC: [PATCH] isearch enhancements: symbol mode; syntactic filtering Date: Thu, 7 Jul 2011 16:53:43 +0200 Message-ID: References: <4E15C0BA.10400@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1310051315 25766 80.91.229.12 (7 Jul 2011 15:08:35 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 7 Jul 2011 15:08:35 +0000 (UTC) Cc: emacs-devel@gnu.org To: Daniel Colascione Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jul 07 17:08:28 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QeqBo-0007me-5y for ged-emacs-devel@m.gmane.org; Thu, 07 Jul 2011 17:08:28 +0200 Original-Received: from localhost ([::1]:51502 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QeqBm-0005Rr-Ke for ged-emacs-devel@m.gmane.org; Thu, 07 Jul 2011 11:08:26 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:53155) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qepxx-0001pQ-3y for emacs-devel@gnu.org; Thu, 07 Jul 2011 10:54:10 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qepxv-0000rB-Jd for emacs-devel@gnu.org; Thu, 07 Jul 2011 10:54:08 -0400 Original-Received: from mail-ey0-f169.google.com ([209.85.215.169]:53032) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qepxv-0000qf-3C for emacs-devel@gnu.org; Thu, 07 Jul 2011 10:54:07 -0400 Original-Received: by eyd9 with SMTP id 9so382619eyd.0 for ; Thu, 07 Jul 2011 07:54:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=Sft1D1ZJWElyLXtgxqToQEvKpKy21BiAKig3BFIqFRo=; b=Z1o5CIJ0de94kOR+Xkl86PDAQRsyIC0FGmf0N27FClLyuFpsQFfCDWcdvuE1QnlVX4 s2VDVVnq9w4Zpc6NhYBE/r8Qcn2+xFlFZTOevVS8pEHBKc1sB/cvQ0vQBp+3o8CGpWMF E6+yOf8GHSI3qb44jrfvCtUP+o6NK7f5PuzbU= Original-Received: by 10.213.35.202 with SMTP id q10mr336504ebd.64.1310050445473; Thu, 07 Jul 2011 07:54:05 -0700 (PDT) Original-Received: by 10.213.7.84 with HTTP; Thu, 7 Jul 2011 07:53:43 -0700 (PDT) In-Reply-To: <4E15C0BA.10400@gmail.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.215.169 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:141732 Archived-At: On Thu, Jul 7, 2011 at 16:20, Daniel Colascione wrote: > New features > ------------ > > - Syntactic filtering: control whether to match in comments, strings, and > normal text. > > - Symbol search: like word search, but looks only at symbol boundaries > > - One ring: optionally share a search ring between normal and regular > expression searches. The additional history storage described below allow= s > this mode to work reliably. > > Bugfixes > -------- > > - After an isearch settings change, we refresh the state stored at the to= of > the stack. This way, we don't lose track of settings after adding charact= ers > to the search string and removing them again. > > The patch also changes some behavior: > > - With the patch, we store isearch state in the history ring alongside th= e > actual search strings. =C2=A0This information allows us to exactly recrea= te > searches when we pull them from history. > > Other behavior changes > ---------------------- > > - Case sensitivity is now displayed alongside other isearch settings in t= he > isearch prompt. =C2=A0Previously, the only indication we gave of case sen= sitivity > was a fleeing message displayed briefly each time the user toggled the > setting. > > - isearch no longer prints "pending". I don't see why this message would = be > useful. Great.