0

I am making the switch to emacs from Textmate and really want to find an easy way to find all the TODOs and FIXMEs in my Rails projects. In Textmate there is a TODO bundle. In Vim there is the tasklist. What is the equivalent in emacs? Is this done with a grep?

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Bob
  • 1

2 Answers2

0

Looks like this might be a good place to start. :)

paulcam
  • 884
  • 5
  • 14
0

Jonathan Rockway's eproject is a lightweight project management package that has that functionality. You'll have to do some configuration to define the files in your project. After that, you can use M-x eproject-todo to find all the TODOs and FIXMEs.

It also has implementations of find-file and switch-buffer that restricts the choices to itmes in the project.

Dingo
  • 3,305
  • 18
  • 14