This question is related to another one, Emacs :TODO indicator at left side. I recently came across a minor mode I like a lot called FixmeMode. It supports auto highlighting of TODO marks, and navigating between them. However, I think it makes more sense to recognize the "TODO" strings only in comments, rather than polluting the whole file. Is it possible?
|
feedback
|
|
Check out the library fic-mode.el, it has been verified in C++ and Emacs-Lisp. It was written specifically to answer this question. The installation is like any standard package:
Though Wei Hu did ask for an easy way to add it to multiple modes, so here goes:
| |||||||||
feedback
|
|
It's possible but quite a bit trickier. Fixme mode uses The TODO indicator in the left fringe is static. Execute the function and all current TODO's are highlighted; change the buffer (adding or removing TODO's) does not change the fringe indicator; that's only changed when the function runs again. Your approach would have to get into syntax tables, determining first when you're in a comment and then looking for the keywords. The tricky part comes in doing this interactively (i.e. as you type). You should be able to hook into the Sorry it's not a full working-code answer..... | |||||
feedback
|
|
Maybe this will help: there's a fn
| |||||
feedback
|
|
In the emacs manual there is an interesting solution for highlighting words in comments (link to emacs manual). For instance:
In this particular example, the word "TODO" is highlighted in comments within emacs lisp mode. This type of solution is also discussed here | |||
|
feedback
|