unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Invoke occur from isearch?
@ 2003-04-28 15:28 Kai Großjohann
  2003-04-29  5:39 ` Richard Stallman
  0 siblings, 1 reply; 2+ messages in thread
From: Kai Großjohann @ 2003-04-28 15:28 UTC (permalink / raw)


Maybe it would be useful to get a list of occurrences of the current
isearch string?  This was discussed on gnu.emacs.help.  Johan
Bockgård suggested an implementation.  I shortened it and now I have
the following:

(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)

What do people think?
-- 
file-error; Data: (Opening input file no such file or directory ~/.signature)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Invoke occur from isearch?
  2003-04-28 15:28 Invoke occur from isearch? Kai Großjohann
@ 2003-04-29  5:39 ` Richard Stallman
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Stallman @ 2003-04-29  5:39 UTC (permalink / raw)
  Cc: emacs-devel

    Maybe it would be useful to get a list of occurrences of the current
    isearch string?

It would be useful, but I don't want to keep giving special isearch
meanings to more and more characters.  We already have too many, I
think.

But this command could be called using M-x.  It ought to be
able to work after you exit the search.  Does it?

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-04-29  5:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-28 15:28 Invoke occur from isearch? Kai Großjohann
2003-04-29  5:39 ` Richard Stallman

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).