Skip to content

Instantly share code, notes, and snippets.

@snim2
Created September 1, 2010 21:39
Show Gist options
  • Select an option

  • Save snim2/561416 to your computer and use it in GitHub Desktop.

Select an option

Save snim2/561416 to your computer and use it in GitHub Desktop.
Highlight phrases starting with TODO, FIXME, etc. in emacs.
(defun hilite-todos ()
(highlight-lines-matching-regexp "\\<\\(FIXME\\|WRITEME\\|WRITEME!\\|TODO\\|BUG\\):?"
'hi-green-b)
)
(add-hook '$WHATEVER-mode-hook 'hilite-todos)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment