Codetag FAQs

Q: What is the Codetag Project?

A: If you got this far, I hope you figured it out already. See WikiStart.


Q: Where is the detailed description of Codetags?

A: See the PEP.


Q: What is a PEP?

A: See ...


Q: How do I get vim to recognize all those Codetags?

A:
For Python, put a line like this in your ~/.vim/syntax/python.vim syntax highlighter:

syn keyword pythonTodo     TODO FIXME HACK WKRD XXX ??? BUG REQ STAT GLOSS FTRQ CAV IDEA NOTE PORT contained

For C:

syn keyword     cTodo           contained TODO FIXME XXX ...

From these two examples you can probably figure out how to make it work for any language syntax highlighting file.