Skip to content

Instantly share code, notes, and snippets.

@adeolaawoyemi
Created December 18, 2010 00:19
Show Gist options
  • Save adeolaawoyemi/745959 to your computer and use it in GitHub Desktop.
Save adeolaawoyemi/745959 to your computer and use it in GitHub Desktop.
hilight keywords like 'FIXME:', 'TODO:' and 'BUG:' in code
;; hilight some useful keywords
(set-face-background 'font-lock-warning-face "yellow")
(set-face-foreground 'font-lock-warning-face "black")
(add-hook 'font-lock-mode-hook
(lambda ()
(font-lock-add-keywords nil
'(("\\<\\(FIXME\\|TODO\\|BUG\\):" 1 font-lock-warning-face prepend)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment