Fork me on GitHub
#cider
<
2020-01-17
>
yuhan17:01:44

Managed to hack together a way of displaying images in the cider inspector :)

bowie 28
parrot 8
bozhidar08:01:13

Great work! Hopefully some PR is coming our way. 🙂

yuhan17:01:12

The emacs-lisp side of things was surprisingly simple, after looking at the cider-repl code

erwinrooijakkers22:01:04

Is there a way to ” eval-last-sexp-and-pretty-print-comment “?

erwinrooijakkers22:01:02

E.g., in a buffer I have:

(+ 1 2)
Then when I am after that expression and I do this command I want to see:
(+ 1 2)
;; => 3

dpsutton22:01:59

cider-pprint-eval-last-sexp-to-comment?

dpsutton22:01:14

does what you want in my copy

erwinrooijakkers22:01:49

In mine too! 😄