* bug#14673: Fwd: Show all lines in marked buffers matching a regexp (with patch)
[not found] <87a9mn0vxh.fsf_-_@gmail.com>
@ 2013-06-20 7:30 ` Matthias Meulien
2013-06-20 23:10 ` Juri Linkov
2013-07-03 23:05 ` Juri Linkov
0 siblings, 2 replies; 3+ messages in thread
From: Matthias Meulien @ 2013-06-20 7:30 UTC (permalink / raw)
To: 14673
[-- Attachment #1: Type: text/plain, Size: 1428 bytes --]
Severity: wishlist
Tags: patch
-------- Message original --------
Return-Path: <orontee@gmail.com>
Received: from choubidou.localdomain
(jau31-3-82-239-20-84.fbx.proxad.net. [82.239.20.84]) by
mx.google.com with ESMTPSA id ev19sm5719919wid.2.2013.06.18.17.42.47
for <emacs-devel@gnu.org> (version=TLSv1.2 cipher=RC4-SHA
bits=128/128); Tue, 18 Jun 2013 17:42:48 -0700 (PDT)
From: Matthias Meulien <orontee@gmail.com>
To: emacs-devel@gnu.org
Subject: Show all lines in marked buffers matching a regexp (with patch)
References: <20130618.092933.35336000126336498.kazu@iij.ad.jp>
<20130618.112719.2252126271017151770.kazu@iij.ad.jp>
<8338sfs5ct.fsf@gnu.org> <20130619.064010.988324446963344956.kazu@iij.ad.jp>
Date: Wed, 19 Jun 2013 02:46:18 +0200
In-Reply-To: <20130619.064010.988324446963344956.kazu@iij.ad.jp> ("Kazu
Yamamoto \=\?utf-8\?B\?KOWxseacrOWSjOW9pikiJ3M\=\?\= message of "Wed, 19
Jun 2013 06:40:10 +0900 (JST)")
Message-ID: <87a9mn0vxh.fsf_-_@gmail.com>
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="=-=-="
Don't you think the Buffer List should have a command to show all
lines in marked buffers matching a regexp?
An analog of `M-s a C-s' and `M-s a M-C-s' but using Multi Occur
in place of ISearch.
Here is a patch to lisp/buff-menu.el that adds such a command with
key binding `M-s a C-o'.
--
Matthias
[-- Attachment #2: 0001-Extend-buffer-menu-with-command-to-show-lines-in-mar.patch --]
[-- Type: text/x-patch, Size: 2542 bytes --]
From a4f8d342ebad3f357ba470c8e7b56a36e57c4379 Mon Sep 17 00:00:00 2001
From: Matthias Meulien <orontee@gmail.com>
Date: Wed, 19 Jun 2013 02:28:22 +0200
Subject: [PATCH] Extend buffer menu with command to show lines in marked
buffers matching a regexp
---
| 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
--git a/lisp/buff-menu.el b/lisp/buff-menu.el
index 6c02233..0ac109d 100644
--- a/lisp/buff-menu.el
+++ b/lisp/buff-menu.el
@@ -129,7 +129,8 @@ commands.")
(define-key map "T" 'Buffer-menu-toggle-files-only)
(define-key map (kbd "M-s a C-s") 'Buffer-menu-isearch-buffers)
(define-key map (kbd "M-s a M-C-s") 'Buffer-menu-isearch-buffers-regexp)
-
+ (define-key map (kbd "M-s a C-o") 'Buffer-menu-multi-occur)
+
(define-key map [mouse-2] 'Buffer-menu-mouse-select)
(define-key map [follow-link] 'mouse-face)
@@ -169,6 +170,9 @@ commands.")
(bindings--define-key menu-map [ir]
'(menu-item "Isearch Marked Buffers..." Buffer-menu-isearch-buffers
:help "Search for a string through all marked buffers using Isearch"))
+ (bindings--define-key menu-map [mo]
+ '(menu-item "Multi Occur Marked Buffers..." Buffer-menu-multi-occur
+ :help "Show lines matching a regexp in marked buffers using Occur"))
(bindings--define-key menu-map [s3] menu-bar-separator)
(bindings--define-key menu-map [by]
'(menu-item "Bury" Buffer-menu-bury
@@ -226,6 +230,7 @@ In Buffer Menu mode, the following commands are defined:
buffer selected before this one in another window.
\\[Buffer-menu-isearch-buffers] Incremental search in the marked buffers.
\\[Buffer-menu-isearch-buffers-regexp] Isearch for regexp in the marked buffers.
+\\[Buffer-menu-multi-occur] Show lines matching regexp in the marked buffers.
\\[Buffer-menu-visit-tags-table] visit-tags-table this buffer.
\\[Buffer-menu-not-modified] Clear modified-flag on that buffer.
\\[Buffer-menu-save] Mark that buffer to be saved, and move down.
@@ -477,6 +482,13 @@ If UNMARK is non-nil, unmark them."
(interactive)
(multi-isearch-buffers-regexp (Buffer-menu-marked-buffers)))
+(defun Buffer-menu-multi-occur ()
+ "Show all lines in marked buffers containing a match for a
+regexp ."
+ (interactive)
+ (let ((regexp (occur-read-primary-args)))
+ (multi-occur (Buffer-menu-marked-buffers) (car regexp))))
+
\f
(defun Buffer-menu-visit-tags-table ()
"Visit the tags table in the buffer on this line. See `visit-tags-table'."
--
1.8.3.1
[-- Attachment #3: Portion de message joint --]
[-- Type: text/plain, Size: 33 bytes --]
Comments welcome,
--
Matthias
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#14673: Fwd: Show all lines in marked buffers matching a regexp (with patch)
2013-06-20 7:30 ` bug#14673: Fwd: Show all lines in marked buffers matching a regexp (with patch) Matthias Meulien
@ 2013-06-20 23:10 ` Juri Linkov
2013-07-03 23:05 ` Juri Linkov
1 sibling, 0 replies; 3+ messages in thread
From: Juri Linkov @ 2013-06-20 23:10 UTC (permalink / raw)
To: Matthias Meulien; +Cc: 14673
> Severity: wishlist
> Tags: patch
>
> Here is a patch to lisp/buff-menu.el that adds such a command with
> key binding `M-s a C-o'.
Provided there no objections I could commit it in a few days.
^ permalink raw reply [flat|nested] 3+ messages in thread
* bug#14673: Fwd: Show all lines in marked buffers matching a regexp (with patch)
2013-06-20 7:30 ` bug#14673: Fwd: Show all lines in marked buffers matching a regexp (with patch) Matthias Meulien
2013-06-20 23:10 ` Juri Linkov
@ 2013-07-03 23:05 ` Juri Linkov
1 sibling, 0 replies; 3+ messages in thread
From: Juri Linkov @ 2013-07-03 23:05 UTC (permalink / raw)
To: Matthias Meulien; +Cc: 14673-done
Version: 24.3.50
> Severity: wishlist
> Tags: patch
> Here is a patch to lisp/buff-menu.el that adds such a command with
> key binding `M-s a C-o'.
Thanks, your patch is applied now.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-07-03 23:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <87a9mn0vxh.fsf_-_@gmail.com>
2013-06-20 7:30 ` bug#14673: Fwd: Show all lines in marked buffers matching a regexp (with patch) Matthias Meulien
2013-06-20 23:10 ` Juri Linkov
2013-07-03 23:05 ` Juri Linkov
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).