Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从 Textmate 切换到 emacs,并且真的想找到一种简单的方法来查找我的 Rails 项目中的所有 TODO 和 FIXME。在 Textmate 中有一个 TODO 包。在 Vim 中有任务列表。emacs中的等价物是什么?这是用grep完成的吗?
Jonathan Rockway 的eproject是一个具有该功能的轻量级项目管理包。您必须进行一些配置来定义项目中的文件。之后,您可以使用M-x eproject-todo查找所有 TODO 和 FIXME。
M-x eproject-todo
它还具有 find-file 和 switch-buffer 的实现,将选择限制在项目中的 itmes。
看起来这可能是一个很好的起点。:)