completion/ivy: extend +ivy-task-tags

To support the new tag list used in ui/hl-todo. These were derived from
https://github.com/bbatsov/emacs-lisp-style-guide
This commit is contained in:
Henrik Lissner 2019-10-15 16:25:42 -04:00
parent 24b336322c
commit 46b7945015
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395

View File

@ -8,8 +8,12 @@ When non-nil, preview non-virtual buffers.
When 'everything, also preview virtual buffers")
(defvar +ivy-task-tags
'(("TODO" . warning)
("FIXME" . error))
'(("TODO" . warning)
("FIXME" . error)
("HACK" . font-lock-constant-face)
("REVIEW" . font-lock-keyword-face)
("NOTE" . success)
("DEPRECATED" . font-lock-doc-face))
"An alist of tags for `+ivy/tasks' to include in its search, whose CDR is the
face to render it with.")