solarized-emacs

a fork of Bozhidar Batsov's solarized-emacs
git clone https://git.trogloxene.org/solarized-emacs.git
Log | Files | Refs | README

commit 8271679a627148c96ad894f960cec9b1abfb1e6c
parent e626b1889d8c945806e959e451f08633d948f8a7
Author: madand <dev@madand.net>
Date:   Tue,  6 Jul 2021 16:09:51 +0300

Improve handling of auto-highlight-symbol after upstream changes

This commit accommodates to the following upstream changes:
* `ahs-plugin-defalt-face` was renamed to `ahs-plugin-default-face`
* Several new *-unfocused faces were introduced (e.g. `ahs-face-unfocsed`).

All the mentioned faces are themed exactly the same way the `ahs-face` is.

Diffstat:
Msolarized-faces.el | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/solarized-faces.el b/solarized-faces.el @@ -325,10 +325,14 @@ ;;;;; auto-highlight-symbol `(ahs-definition-face ((,class (:foreground ,magenta :background unspecified :slant normal)))) + `(ahs-definition-face-unfocused ((,class (:foreground ,magenta :background unspecified + :slant normal)))) `(ahs-edit-mode-face ((,class (:foreground ,base03 :background ,magenta)))) `(ahs-face ((,class (:foreground ,magenta :background unspecified)))) + `(ahs-face-unfocused ((,class (:foreground ,magenta :background unspecified)))) `(ahs-plugin-bod-face ((,class (:foreground ,magenta :background unspecified )))) - `(ahs-plugin-defalt-face ((,class (:foreground ,magenta :background unspecified)))) + `(ahs-plugin-default-face ((,class (:foreground ,magenta :background unspecified)))) + `(ahs-plugin-default-face-unfocused ((,class (:foreground ,magenta :background unspecified)))) `(ahs-plugin-whole-buffer-face ((,class (:foreground ,magenta :background unspecified)))) `(ahs-warning-face ((,class (:foreground ,red :weight bold)))) ;;;;; avy-mode