From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Oleksandr Gavenko Newsgroups: gmane.emacs.help Subject: Re: Task list like Eclipse's that can keep track of TODOs in multiple source files Date: Thu, 14 Feb 2008 23:01:22 +0200 Organization: Aioe.org NNTP Server Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1203025279 18352 80.91.229.12 (14 Feb 2008 21:41:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 14 Feb 2008 21:41:19 +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 Feb 14 22:41:42 2008 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 1JPlps-0005Wd-AO for geh-help-gnu-emacs@m.gmane.org; Thu, 14 Feb 2008 22:41:40 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JPlpO-00087S-DQ for geh-help-gnu-emacs@m.gmane.org; Thu, 14 Feb 2008 16:41:10 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!news-fra1.dfn.de!feeder.erje.net!aioe.org!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 18 Original-NNTP-Posting-Host: cfnJ+O64CatjLLRNXUzQcg.user.aioe.org Original-X-Complaints-To: abuse@aioe.org In-Reply-To: User-Agent: Thunderbird 2.0.0.9 (Windows/20071031) Original-Xref: shelby.stanford.edu gnu.emacs.help:156151 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:51526 Archived-At: > Is there a task list mode that will find tags like TODO/XXX/FIXME in > source files in a directory, make them into tasks and allow me to edit > them/reorder them in the task list? > > I understand that Eclipse and Visual Studio can provide at least some of > the functionality listed above. The best I can do thus far is the use of > M-x multi-occur, which is useful but does not allow me to simply > reorder/sort/edit. > Put in .emacs (setq grep-find-command "find . -type f ! -path '*.svn*' ! -path '*CVS*' ! -path '*.hg*' -name '*' -print0 | xargs -0 -e grep -nH ") and type C-x grep-find XXX\|TODO\|FIXME It find in all file and subdirectories from current dir of buffer.