This is second of three big naming convention changes. In this commit, we change the naming conventions for hook functions and variable functions: 1. Replace the bar | to indicate a hook function with a -h suffix, e.g. doom|init-ui -> doom-init-ui-h doom|run-local-var-hooks -> doom-run-local-var-hooks-h 2. And add a -fn suffix for functions meant to be set on variables, e.g. (setq magit-display-buffer-function #'+magit-display-buffer-fn) See ccf327f8 for the reasoning behind these changes.
24 lines
1,022 B
EmacsLisp
24 lines
1,022 B
EmacsLisp
;;; ui/hl-todo/packages.el -*- lexical-binding: t; -*-
|
|
|
|
(def-package! hl-todo
|
|
:hook (prog-mode . hl-todo-mode)
|
|
:config
|
|
(setq hl-todo-keyword-faces
|
|
`(("TODO" . ,(face-foreground 'warning))
|
|
("FIXME" . ,(face-foreground 'error))
|
|
("NOTE" . ,(face-foreground 'success))))
|
|
|
|
;; 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)))))
|