emacs: call erc-hl-nicks-reset-face-table when changing themes
authorAmin Bandali <bandali@gnu.org>
Wed, 30 Oct 2019 16:48:26 +0000 (12:48 -0400)
committerAmin Bandali <bandali@gnu.org>
Wed, 30 Oct 2019 16:48:26 +0000 (12:48 -0400)
.emacs.d/init.el

index 5321686..f60c736 100644 (file)
@@ -1563,6 +1563,8 @@ This function is intended for use with `ivy-ignore-buffers'."
   (sml/apply-theme 'tangomod)
   (font-lock-remove-keywords
    'org-mode b/org-mode-font-lock-keywords)
+  (when (featurep 'erc-hl-nicks)
+    (erc-hl-nicks-reset-face-table))
   (when (featurep 'exwm-systemtray)
     (exwm-systemtray--refresh)))
 
@@ -1574,6 +1576,8 @@ This function is intended for use with `ivy-ignore-buffers'."
   (sml/apply-theme 'automatic)
   (font-lock-add-keywords
    'org-mode b/org-mode-font-lock-keywords t)
+  (when (featurep 'erc-hl-nicks)
+    (erc-hl-nicks-reset-face-table))
   (when (featurep 'exwm-systemtray)
     (exwm-systemtray--refresh)))