Comment hl-todo keywords

This commit is contained in:
Henrik Lissner 2020-04-10 00:18:31 -04:00
parent f4af2b05b0
commit fa2b9d8afe
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -5,11 +5,21 @@
:config :config
(setq hl-todo-highlight-punctuation ":" (setq hl-todo-highlight-punctuation ":"
hl-todo-keyword-faces hl-todo-keyword-faces
`(("TODO" warning bold) `(;; For things that need to be done, just not today.
("FIXME" error bold) ("TODO" warning bold)
("HACK" font-lock-constant-face bold) ;; For problems that will become bigger problems later if not
("REVIEW" font-lock-keyword-face bold) ;; fixed ASAP.
("NOTE" success bold) ("FIXME" error bold)
;; For tidbits that are unconventional and not intended uses of the
;; constituent parts, and may break in a future update.
("HACK" font-lock-constant-face bold)
;; For things that were done hastily and/or hasn't been thoroughly
;; tested. It may not even be necessary!
("REVIEW" font-lock-keyword-face bold)
;; For especially important gotchas with a given implementation,
;; directed at another user other than the author.
("NOTE" success bold)
;; For things that just gotta go and will soon be gone.
("DEPRECATED" font-lock-doc-face bold))) ("DEPRECATED" font-lock-doc-face bold)))
;; Use a more primitive todo-keyword detection method in major modes that ;; Use a more primitive todo-keyword detection method in major modes that