We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe44efd commit e97b68dCopy full SHA for e97b68d
lispy.el
@@ -4253,8 +4253,11 @@ When at an outline, eval the outline."
4253
(lispy-message res))
4254
((or (fboundp 'cider--display-interactive-eval-result)
4255
(require 'cider nil t))
4256
- (cider--display-interactive-eval-result
4257
- res (cdr (lispy--bounds-dwim))))
+ (if (version< cider-version "1.9.0")
+ (cider--display-interactive-eval-result
4258
+ res (cdr (lispy--bounds-dwim)))
4259
4260
+ res 'value (cdr (lispy--bounds-dwim)))))
4261
((or (fboundp 'eros--eval-overlay)
4262
(require 'eros nil t))
4263
(eros--eval-overlay
0 commit comments