From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Martin Newsgroups: gmane.emacs.help Subject: Re: next-error for dired-find? Date: Mon, 02 Mar 2009 10:40:46 +0100 Organization: Arcor Message-ID: References: <2cbee169-8991-400e-b91f-5b8950e822f2@r4g2000yqa.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1235990509 13993 80.91.229.12 (2 Mar 2009 10:41:49 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 2 Mar 2009 10:41:49 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 02 11:43:06 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Le5c1-0005bj-PT for geh-help-gnu-emacs@m.gmane.org; Mon, 02 Mar 2009 11:43:06 +0100 Original-Received: from localhost ([127.0.0.1]:46104 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Le5ag-0003BK-K8 for geh-help-gnu-emacs@m.gmane.org; Mon, 02 Mar 2009 05:41:42 -0500 Original-Path: news.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news1.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!newsfeed00.sul.t-online.de!newsfeed01.sul.t-online.de!t-online.de!newsfeed.arcor.de!newsspool1.arcor-online.net!news.arcor.de.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.90 (windows-nt) Cancel-Lock: sha1:HobRxKR8gdgM1Xdpi53hvq5WwnA= Original-Lines: 23 Original-NNTP-Posting-Date: 02 Mar 2009 10:44:44 CET Original-NNTP-Posting-Host: c29798f5.newsspool4.arcor-online.net Original-X-Trace: DXC=mGS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:62518 Archived-At: Mike Halloran writes: > Is there a good way to run a file search, and use the c-x backtick (c- > x `) (next-error) command to jump to each file? > > c-x backtick works with grep, and grep-find. Basically, I am looking > to do a quick browse through each cpp file in my source tree. > > Any thoughts? dired-do-isearch M-x ... RET Search for a string through all marked files using Isearch. dired-do-isearch-regexp M-x ... RET Search for a regexp through all marked files using Isearch. dired-do-search M-x ... RET Search through all marked files for a match for REGEXP. dired-isearch-filenames M-x ... RET Search for a string using Isearch only in file names in the Dired buffer. dired-isearch-filenames-regexp M-x ... RET Search for a regexp using Isearch only in file names in the Dired buffer. dired-isearch-filenames-toggle M-x ... RET Toggle file names searching on or off.