emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 1327593ce2 1/2: Make eshell link faces more distinctive on 8-colo


From: Lars Ingebrigtsen
Subject: master 1327593ce2 1/2: Make eshell link faces more distinctive on 8-color displays
Date: Tue, 22 Mar 2022 12:49:01 -0400 (EDT)

branch: master
commit 1327593ce28f94c4ffe6bbf5fead8e820d3dbd41
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Make eshell link faces more distinctive on 8-color displays
    
    * lisp/eshell/em-ls.el (eshell-ls-directory):
    (eshell-ls-symlink): Make the faces be distinctive on 8-colour
    displays (bug#43615).
---
 lisp/eshell/em-ls.el | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/lisp/eshell/em-ls.el b/lisp/eshell/em-ls.el
index 846f3d5e29..874591d250 100644
--- a/lisp/eshell/em-ls.el
+++ b/lisp/eshell/em-ls.el
@@ -100,15 +100,14 @@ faster and conserves more memory."
   :type 'boolean)
 
 (defface eshell-ls-directory
-  '((((class color) (background light)) (:foreground "Blue" :weight bold))
-    (((class color) (background dark)) (:foreground "SkyBlue" :weight bold))
-    (t (:weight bold)))
-  "The face used for highlighting directories.")
+  '((t (:inherit font-lock-function-name-face)))
+  "The face used for highlighting directories."
+  :version "29.1")
 
 (defface eshell-ls-symlink
-  '((((class color) (background light)) (:foreground "Dark Cyan" :weight bold))
-    (((class color) (background dark)) (:foreground "Cyan" :weight bold)))
-  "The face used for highlighting symbolic links.")
+  '((t (:inherit font-lock-keyword-face)))
+  "The face used for highlighting symbolic links."
+  :version "29.1")
 
 (defface eshell-ls-executable
   '((((class color) (background light)) (:foreground "ForestGreen" :weight 
bold))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]