branch: elpa/symbol-overlay
commit a5b5e62cadc6ee4ff47cede5090c0a4565fe871e
Author: wolray <[email protected]>
Commit: wolray <[email protected]>
change the temp-face
---
symbol-overlay.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/symbol-overlay.el b/symbol-overlay.el
index 7103dbd457..e11744c233 100644
--- a/symbol-overlay.el
+++ b/symbol-overlay.el
@@ -169,7 +169,8 @@ if specified."
(make-variable-buffer-local 'symbol-overlay-temp-symbol)
(defvar symbol-overlay-temp-face
- '((bold) (underline))
+ '((:background "gray70")
+ (:foreground "gray30"))
"Face for temporary highlighting.")
(defvar symbol-overlay-timer nil
@@ -245,8 +246,7 @@ This only effects symbols in the current displayed window."
Use COLOR as the overlay's background color."
(let ((overlay (make-overlay (match-beginning 0) (match-end 0)))
(face `((:background ,color)
- (:foreground "black")
- (underline))))
+ (:foreground "black"))))
(overlay-put overlay 'face face)
(overlay-put overlay 'keymap symbol-overlay-map)
(overlay-put overlay 'evaporate t)