branch: elpa/spacemacs-theme
commit 510e0d84c57db6643ccf9bc49ea275ada7d95f37
Author: duianto <[email protected]>
Commit: GitHub <[email protected]>
hl-todo-keyword-faces restore upstream strings
hl-todo uses the `hl-todo-keyword-faces` strings as regexps.
Especially "???" caused the regexp search to take forever.
---
spacemacs-common.el | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/spacemacs-common.el b/spacemacs-common.el
index d439a2f881..b913faeab9 100644
--- a/spacemacs-common.el
+++ b/spacemacs-common.el
@@ -942,22 +942,22 @@ to 'auto, tags may not be properly aligned. "
`(ansi-color-names-vector [,bg4 ,red ,green ,yellow ,blue ,magenta ,cyan
,base])
;;;;; hl-todo
- `(hl-todo-keyword-faces '(("TODO" . ,war)
- ("NEXT" . ,war)
- ("THEM" . ,aqua)
- ("PROG" . ,blue)
- ("OKAY" . ,blue)
- ("DONT" . ,red)
- ("FAIL" . ,red)
- ("DONE" . ,suc)
- ("NOTE" . ,yellow)
- ("KLUDGE" . ,yellow)
- ("HACK" . ,yellow)
- ("TEMP" . ,yellow)
- ("FIXME" . ,war)
- ("XXX" . ,war)
- ("XXXX" . ,war)
- ("???" . ,war)))
+ `(hl-todo-keyword-faces '(("TODO" . ,war)
+ ("NEXT" . ,war)
+ ("THEM" . ,aqua)
+ ("PROG" . ,blue)
+ ("OKAY" . ,blue)
+ ("DONT" . ,red)
+ ("FAIL" . ,red)
+ ("DONE" . ,suc)
+ ("NOTE" . ,yellow)
+ ("KLUDGE" . ,yellow)
+ ("HACK" . ,yellow)
+ ("TEMP" . ,yellow)
+ ("FIXME" . ,war)
+ ("XXX+" . ,war)
+ ("\\?\\?\\?+" . ,war)))
+
;;;;; pdf-tools
`(pdf-view-midnight-colors '(,base . ,bg1)))