It would be great if Semantic could support FIXME: and
TODO: tags (like, for instance Eclipse does). I tried
adding that functionality myself but failed
miserably... :-(
Semantic doesn't look inside any comments, so there is no structure there to do the lookup.
It would probably be easier to write a seperate simple program form Emacs that calls grep, and groups the output. Then you could use semantic to find out what those grep hits are associated with.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=88537
Originator: NO
Semantic doesn't look inside any comments, so there is no structure there to do the lookup.
It would probably be easier to write a seperate simple program form Emacs that calls grep, and groups the output. Then you could use semantic to find out what those grep hits are associated with.
Add this to your ~/.xemacs/init.el file:
; Make fixme:, todo:, bug: and ??? tags standout
(add-hook 'font-lock-mode-hook
'(lambda ()
(setq font-lock-keywords
(append font-lock-keywords
'(("[Ff][Ii][Xx][Mm][Ee]:\\|[Tt][Oo][Dd][Oo]:\\|[Bb][Uu][Gg]:\\|\\?\\?\\?\\?*"
(0 'font-lock-warning-face t)))))))