unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Juri Linkov <juri@jurta.org>
To: "Lennart Borgman \(gmail\)" <lennart.borgman@gmail.com>
Cc: Emacs Devel <emacs-devel@gnu.org>
Subject: Re: Calling occur from within isearch
Date: Wed, 21 Nov 2007 22:03:14 +0200	[thread overview]
Message-ID: <87hcjf2wot.fsf@jurta.org> (raw)
In-Reply-To: <47448DB2.60402@gmail.com> (Lennart Borgman's message of "Wed, 21 Nov 2007 20:57:38 +0100")

> Sometimes I think it would be good to call occur from within isearch.
> Anyone else that thinks it would be good to be able to do so?

This is possible with the following patch.  I'm still not sure
whether it is better to quit isearch before calling occur or not.
Anyway, it works without quitting isearch, and displays the results
of occur in another window.

Index: lisp/isearch.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/isearch.el,v
retrieving revision 1.306
diff -c -r1.306 isearch.el
*** lisp/isearch.el	10 Nov 2007 23:03:24 -0000	1.306
--- lisp/isearch.el	21 Nov 2007 20:01:07 -0000
***************
*** 1256,1265 ****
--- 1257,1276 ----
    (interactive)
    (isearch-query-replace t))
  
+ (defun isearch-occur (regexp &optional nlines)
+   "Run `occur' with string to search from the current search string.
+ REGEXP is a regexp from the last search queted when the search was not regexp.
+ NLINES has the same meaning as in `occur'."
+   (interactive
+    (list
+     (if isearch-regexp isearch-string (regexp-quote isearch-string))
+     (when current-prefix-arg
+       (prefix-numeric-value current-prefix-arg))))
+   (let ((case-fold-search isearch-case-fold-search))
+     ;; (isearch-done)
+     ;; (isearch-clean-overlays)
+     (occur regexp nlines)))
+ 
  \f
  (defun isearch-delete-char ()
    "Discard last input item and move point back.

-- 
Juri Linkov
http://www.jurta.org/emacs/

  reply	other threads:[~2007-11-21 20:03 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-21 19:57 Calling occur from within isearch Lennart Borgman (gmail)
2007-11-21 20:03 ` Juri Linkov [this message]
2007-11-21 20:25   ` Lennart Borgman (gmail)
2007-11-22 19:08     ` Juri Linkov
2007-11-22 19:38       ` Drew Adams
2007-11-22 21:48       ` Lennart Borgman (gmail)
2007-11-22  0:30   ` Johan Bockgård
2007-11-22 19:04     ` Juri Linkov
2007-11-23  0:52       ` Juri Linkov
2007-11-23  1:05       ` Johan Bockgård
2007-11-24 17:45         ` Juri Linkov
2007-11-25  3:42           ` Richard Stallman
2007-11-25 15:27             ` Juri Linkov
2007-12-03  0:37               ` Juri Linkov
2007-12-03 18:43                 ` Richard Stallman
2007-12-05 22:17                   ` Juri Linkov
2007-12-06  1:29                     ` Johan Bockgård
2007-12-03 23:25           ` Johan Bockgård
2007-12-04  0:27             ` Juri Linkov
2007-12-04  1:24               ` Johan Bockgård
2007-12-04 22:43                 ` Juri Linkov
2007-12-04 23:59                   ` Johan Bockgård
2007-12-05 22:16                     ` Juri Linkov
2007-12-04 10:35               ` Andreas Schwab
2007-11-21 20:07 ` Drew Adams
2007-11-22 16:21 ` Richard Stallman
2007-11-22 18:16   ` Stefan Monnier
2007-11-22 19:05     ` Juri Linkov
2007-11-22 21:23       ` Stefan Monnier
2007-11-22 19:05   ` Juri Linkov
2007-11-23  4:35     ` Richard Stallman
2007-11-24 17:45       ` Juri Linkov
2007-11-25  3:42         ` Richard Stallman

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=87hcjf2wot.fsf@jurta.org \
    --to=juri@jurta.org \
    --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).