unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: "Drew Adams" <drew.adams@oracle.com>
To: "Lennart Borgman \(gmail\)" <lennart.borgman@gmail.com>,
	"Emacs Devel" <emacs-devel@gnu.org>
Cc: Alex Schroeder <alex@emacswiki.org>
Subject: RE: Calling occur from within isearch
Date: Wed, 21 Nov 2007 12:07:25 -0800	[thread overview]
Message-ID: <BNELLINCGFJLDJIKDGACGECGCFAA.drew.adams@oracle.com> (raw)
In-Reply-To: <47448DB2.60402@gmail.com>

> 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?

Yes. I've done that for some time, using this code by Alex Schroeder
(http://www.emacswiki.org/cgi-bin/wiki/AlexSchroederConfigInit):

(defun isearch-occur ()
  "Invoke `occur' from within isearch."
  (interactive)
  (let ((case-fold-search isearch-case-fold-search))
    (occur (if isearch-regexp
               isearch-string
             (regexp-quote isearch-string)))))

(define-key isearch-mode-map (kbd "C-o") 'isearch-occur)

(defun my-occur (&optional arg)
  "Switch to *Occur* buffer, or run `occur'.
Without a prefix argument, switch to the buffer.
With a universal prefix argument, run occur again.
With a numeric prefix argument, run occur with NLINES
set to that number."
  (interactive "P")
  (if (and (not arg) (get-buffer "*Occur*"))
      (switch-to-buffer "*Occur*")
    (occur (read-from-minibuffer "Regexp: ")
	   (if (listp arg) 0 arg))))

  parent reply	other threads:[~2007-11-21 20:07 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
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 [this message]
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=BNELLINCGFJLDJIKDGACGECGCFAA.drew.adams@oracle.com \
    --to=drew.adams@oracle.com \
    --cc=alex@emacswiki.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).