[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/dape f8fc7f8a39 3/4: Update face formatting
From: |
ELPA Syncer |
Subject: |
[elpa] externals/dape f8fc7f8a39 3/4: Update face formatting |
Date: |
Sun, 14 Jul 2024 06:57:50 -0400 (EDT) |
branch: externals/dape
commit f8fc7f8a39a4586be0e728e0574d2cb70d10f620
Author: Daniel Pettersson <daniel@dpettersson.net>
Commit: Daniel Pettersson <daniel@dpettersson.net>
Update face formatting
---
dape.el | 33 ++++++++++++++-------------------
1 file changed, 14 insertions(+), 19 deletions(-)
diff --git a/dape.el b/dape.el
index 5aec37d621..432b1dbf34 100644
--- a/dape.el
+++ b/dape.el
@@ -687,39 +687,34 @@ The hook is run with one argument, the compilation
buffer."
;;; Face
-(defface dape-breakpoint-face
- '((t :inherit (font-lock-keyword-face)))
+(defface dape-breakpoint-face '((t :inherit font-lock-keyword-face))
"Face used to display breakpoint overlays.")
-(defface dape-log-face
- '((t :inherit (font-lock-string-face)
- :height 0.85 :box (:line-width -1)))
+(defface dape-log-face '((t :inherit font-lock-string-face
+ :height 0.85 :box (:line-width -1)))
"Face used to display log breakpoints.")
-(defface dape-expression-face
- '((t :inherit (dape-breakpoint-face)
- :height 0.85 :box (:line-width -1)))
+(defface dape-expression-face '((t :inherit dape-breakpoint-face
+ :height 0.85 :box (:line-width -1)))
"Face used to display conditional breakpoints.")
-(defface dape-hits-face
- '((t :inherit (font-lock-number-face)
- :height 0.85 :box (:line-width -1)))
+(defface dape-hits-face '((t :inherit font-lock-number-face
+ :height 0.85 :box (:line-width -1)))
"Face used to display hits breakpoints.")
-(defface dape-exception-description-face
- '((t :extend t :inherit (error tooltip)))
+(defface dape-exception-description-face '((t :inherit (error tooltip)
+ :extend t))
"Face used to display exception descriptions inline.")
-(defface dape-source-line-face
- '((t))
+(defface dape-source-line-face '((t))
"Face used to display stack frame source line overlays.")
-(defface dape-repl-success-face
- '((t :inherit compilation-mode-line-exit :extend t))
+(defface dape-repl-success-face '((t :inherit compilation-mode-line-exit
+ :extend t))
"Face used in repl for exit code 0.")
-(defface dape-repl-error-face
- '((t :inherit compilation-mode-line-fail :extend t))
+(defface dape-repl-error-face '((t :inherit compilation-mode-line-fail
+ :extend t))
"Face used in repl for non 0 exit codes.")