From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ted Zlatanov Newsgroups: gmane.emacs.help Subject: Re: Run Shell Command on Buffer Date: Thu, 25 Jan 2007 15:11:57 -0500 Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1169757662 29097 80.91.229.12 (25 Jan 2007 20:41:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 25 Jan 2007 20:41:02 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jan 25 21:40:56 2007 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 1HABOw-0006un-P6 for geh-help-gnu-emacs@m.gmane.org; Thu, 25 Jan 2007 21:40:55 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HABOw-0004bV-92 for geh-help-gnu-emacs@m.gmane.org; Thu, 25 Jan 2007 15:40:54 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!newsfeed.cw.net!cw.net!news-FFM2.ecrc.de!news.germany.com!nuzba.szn.dk!pnx.dk!news.albasani.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 25 Original-X-Trace: news.albasani.net sQfmjg+wsu7gnBPyIffgQXz5mny/G3U2krdtFiFhpNpK+M+eRCT+yjTPSKaJ9Q0cZIAwrgCEQCQedo4688qWzMT/DvXT0stGqsURWKlRjulsv9RJiYjFdckAmjmgYtv6 Original-X-Complaints-To: abuse@albasani.net Original-NNTP-Posting-Date: Thu, 25 Jan 2007 20:11:54 +0000 (UTC) X-User-ID: I36InE71uS+H6N93NxIB0ta/V5Eol8LUQ5aG9nGrcy8= X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6; d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" Cancel-Lock: sha1:eCUOG1z4Pu22bjxuTy71soPRl50= User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.92 (gnu/linux) X-NNTP-Posting-Host: IO7ch9brvBg+PvPeiBdx1TdGIARfYYbBgOyyhsTzwZ8= Original-Xref: shelby.stanford.edu gnu.emacs.help:145046 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor 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:40650 Archived-At: On 25 Jan 2007, drew.adams@oracle.com wrote: >>> It looks like `M-x occur' may be what you want. >> >> Yes, that is exactly it, thanks very much! > > If you like `occur', you might also be interested in this page: > http://www.emacswiki.org/cgi-bin/wiki/OccurMode. Also, the next-error/previous-error commands, which work under grep/occur/compilation modes, are very useful. Try them. I bind mine to F6/F7: (global-set-key [f6] 'next-error) (global-set-key [f7] 'previous-error) They will jump to the next/previous point of interest out of all the grep/occur/compilation points of interest related to the current buffer. Drew: can you update the wiki with this info, or I'll do it? Also, can you check that your replace+.el (mentioned in the Emacs wiki) works with next/previous error? Ted