Skip to content

Commit

Permalink
Restore syntax highlighting in result minibuffer
Browse files Browse the repository at this point in the history
  • Loading branch information
mk authored and bbatsov committed Sep 24, 2024
1 parent a38a92c commit 0b70bf8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## master (unreleased)

### Bugs fixed

- [#3742](https://github.com/clojure-emacs/cider/issues/3742): Restore syntax highlighting in result minibuffer.

## 1.16.0 (2024-09-24)

### Changes
Expand Down
2 changes: 1 addition & 1 deletion cider-overlays.el
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ focused."
:where point
:duration cider-eval-result-duration
:prepend-face (or overlay-face 'cider-result-overlay-face))))
(msg (format "%s%s" cider-eval-result-prefix value))
(msg (format "%s%s" cider-eval-result-prefix font-value))
(max-msg-length (* (floor (* (frame-height) max-mini-window-height))
(frame-width)))
(msg (if (> (string-width msg) max-msg-length)
Expand Down

0 comments on commit 0b70bf8

Please sign in to comment.