51 lines
2.3 KiB
EmacsLisp
51 lines
2.3 KiB
EmacsLisp
;;; ui/hl-todo/packages.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! hl-todo
|
|
:hook (prog-mode . hl-todo-mode)
|
|
:hook (yaml-mode . hl-todo-mode)
|
|
:config
|
|
(setq hl-todo-highlight-punctuation ":"
|
|
hl-todo-keyword-faces
|
|
`(;; For things that need to be done, just not today.
|
|
("TODO" warning bold)
|
|
;; For problems that will become bigger problems later if not
|
|
;; fixed ASAP.
|
|
("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)
|
|
;; For a known bug that needs a workaround
|
|
("BUG" error bold)
|
|
;; For warning about a problematic or misguiding code
|
|
("XXX" font-lock-constant-face bold)))
|
|
|
|
|
|
(defadvice! +hl-todo-clamp-font-lock-fontify-region-a (fn &rest args)
|
|
"Fix an `args-out-of-range' error in some modes."
|
|
:around #'hl-todo-mode
|
|
(letf! (defun font-lock-fontify-region (beg end &optional loudly)
|
|
(funcall font-lock-fontify-region (max beg 1) end loudly))
|
|
(apply fn args)))
|
|
|
|
;; Use a more primitive todo-keyword detection method in major modes that
|
|
;; don't use/have a valid syntax table entry for comments.
|
|
(add-hook! '(pug-mode-hook haml-mode-hook)
|
|
(defun +hl-todo--use-face-detection-h ()
|
|
"Use a different, more primitive method of locating todo keywords."
|
|
(set (make-local-variable 'hl-todo-keywords)
|
|
'(((lambda (limit)
|
|
(let (case-fold-search)
|
|
(and (re-search-forward hl-todo-regexp limit t)
|
|
(memq 'font-lock-comment-face (doom-enlist (get-text-property (point) 'face))))))
|
|
(1 (hl-todo-get-face) t t))))
|
|
(when hl-todo-mode
|
|
(hl-todo-mode -1)
|
|
(hl-todo-mode +1)))))
|