From: João Távora Date: Sun, 6 Mar 2022 11:15:18 +0000 (+0000) Subject: Have a couple of lsp faces inherit from basic "shadow" X-Git-Tag: emacs-29.0.90~1616^2~524^2~4^2~72 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=85ecf46a18c05d4182af3e3a11a8fadd421a28d0;p=emacs.git Have a couple of lsp faces inherit from basic "shadow" * eglot.el (eglot-diagnostic-tag-unnecessary-face) (eglot-diagnostic-tag-deprecated-face): Inherit from 'shadow'. GitHub-reference: per https://github.com/joaotavora/eglot/issues/858 --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 3f84b3b7a26..7bff005973a 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -258,11 +258,11 @@ CONTACT can be: "Face for package-name in EGLOT's mode line.") (defface eglot-diagnostic-tag-unnecessary-face - '((t . (:weight ultra-light))) + '((t (:inherit shadow))) "Face used to render unused or unnecessary code.") (defface eglot-diagnostic-tag-deprecated-face - '((t . (:strike-through t))) + '((t . (:inherit shadow :strike-through t))) "Face used to render deprecated or obsolete code.") (defcustom eglot-autoreconnect 3