From: "Drew Adams" <drew.adams@oracle.com>
To: "'Lennart Borgman'" <lennart.borgman@gmail.com>,
"'Daniel Colascione'" <dan.colascione@gmail.com>
Cc: emacs-devel@gnu.org
Subject: RE: RFC: [PATCH] isearch enhancements: symbol mode; syntactic filtering
Date: Fri, 8 Jul 2011 14:19:02 -0700 [thread overview]
Message-ID: <081BD683079347BAB86EBC04F6E49ACB@us.oracle.com> (raw)
In-Reply-To: <CANbX367hYXUYnWiaSvccexKrmuqVZ9iPpejWcv=6TcQ-JPfdFA@mail.gmail.com>
> While we are thinking about this: I think sometimes it would be good
> to search only visible text. (Especially in org-mode.)
I thought Juri already mentioned that as one of the filtering possibilities.
Anyway, FWIW, in Isearch+, `C-+' toggles searching invisible text. So yes, I
agree with you. Trivial to do, and useful IMO.
(defun isearchp-toggle-invisible ()
"Toggle `search-invisible'."
(interactive)
(when search-invisible
(setq isearchp-last-non-nil-invisible search-invisible))
(setq search-invisible
(if search-invisible nil isearchp-last-non-nil-invisible))
(if search-invisible
(message "Searching invisible text is now ON")
(message "Searching invisible text is now OFF")))
http://www.emacswiki.org/emacs/download/isearch%2b.el
next prev parent reply other threads:[~2011-07-08 21:19 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-07 14:20 RFC: [PATCH] isearch enhancements: symbol mode; syntactic filtering Daniel Colascione
2011-07-07 14:53 ` Lennart Borgman
2011-07-07 20:51 ` Stefan Monnier
2011-07-07 21:39 ` Daniel Colascione
2011-07-08 0:20 ` Juri Linkov
2011-07-08 0:49 ` Daniel Colascione
2011-07-08 19:27 ` Juri Linkov
2011-07-08 3:23 ` Drew Adams
2011-07-08 13:04 ` Stefan Monnier
2011-07-08 21:05 ` Lennart Borgman
2011-07-08 21:19 ` Drew Adams [this message]
2011-07-08 21:50 ` Juri Linkov
2011-07-08 22:34 ` Drew Adams
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=081BD683079347BAB86EBC04F6E49ACB@us.oracle.com \
--to=drew.adams@oracle.com \
--cc=dan.colascione@gmail.com \
--cc=emacs-devel@gnu.org \
--cc=lennart.borgman@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).