help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Task list like Eclipse's that can keep track of TODOs in multiple so


From: Oleksandr Gavenko
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
User-agent: Thunderbird 2.0.0.9 (Windows/20071031)

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.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]