commit 5934f58dacbcf6d8beaafc0bbcd31183554f8bbe
parent 9c9beda61809f124fbabbd2e67e8f2f47b4ecd44
Author: Bozhidar Batsov <bozhidar@batsov.dev>
Date: Tue, 28 Jul 2026 10:10:00 +0200
Deepen cider coverage
The section only had overlays, tests and debugging; add the REPL
prompt/stdout/stderr/result faces, the stacktrace faces, inline
error/warning underlines and the nREPL message log rotation.
Diffstat:
1 file changed, 26 insertions(+), 0 deletions(-)
diff --git a/solarized-faces.el b/solarized-faces.el
@@ -481,8 +481,34 @@
`(cider-instrumented-face ((t (:box (:color ,red-l :line-width -1)))))
`(cider-traced-face ((t (:box (:color ,cyan :line-width -1)))))
`(cider-fringe-good-face ((t (:foreground ,green-l))))
+ `(cider-fringe-bad-face ((t (:foreground ,red))))
+ `(cider-fringe-stale-face ((t (:foreground ,yellow))))
+ `(cider-reader-conditional-face ((t (:foreground ,base01))))
+ `(cider-error-highlight-face ((t (:underline (:style wave :color ,red)))))
+ `(cider-warning-highlight-face ((t (:underline (:style wave :color ,yellow)))))
+ `(cider-debug-prompt-face ((t (:foreground ,magenta :weight bold))))
+ `(cider-stacktrace-error-class-face ((t (:foreground ,red :weight bold))))
+ `(cider-stacktrace-error-message-face ((t (:foreground ,base0 :slant italic))))
+ `(cider-stacktrace-face ((t (:foreground ,base0))))
+ `(cider-stacktrace-fn-face ((t (:foreground ,blue))))
+ `(cider-stacktrace-ns-face ((t (:foreground ,base01))))
+ `(cider-stacktrace-filter-active-face ((t (:foreground ,cyan :underline t))))
+ `(cider-stacktrace-filter-inactive-face ((t (:foreground ,base01))))
+ `(nrepl-message-1-face ((t (:foreground ,blue))))
+ `(nrepl-message-2-face ((t (:foreground ,violet))))
+ `(nrepl-message-3-face ((t (:foreground ,cyan))))
+ `(nrepl-message-4-face ((t (:foreground ,orange))))
+ `(nrepl-message-5-face ((t (:foreground ,green))))
+ `(nrepl-message-6-face ((t (:foreground ,yellow))))
+ `(nrepl-message-7-face ((t (:foreground ,red))))
+ `(nrepl-message-8-face ((t (:foreground ,magenta))))
;;;;; cider-repl-mode
`(cider-repl-err-output-face ((t (:inherit ,font-lock-warning-face :underline nil))))
+ `(cider-repl-prompt-face ((t (:foreground ,blue :weight bold))))
+ `(cider-repl-input-face ((t (:weight bold))))
+ `(cider-repl-result-face ((t (:foreground ,green))))
+ `(cider-repl-stdout-face ((t (:foreground ,base0))))
+ `(cider-repl-stderr-face ((t (:foreground ,red))))
;;;;; cider-test-mode
`(cider-test-failure-face ((t (:foreground ,orange :weight bold :underline t))))
`(cider-test-error-face ((t (:foreground ,red :weight bold :underline t))))