Fork me on GitHub
#spacemacs
<
2022-04-22
>
Kris C13:04:31

My CIDER repl is only showing the last expression and result. What can I do to make it work like before, so it does not clear the buffer all the time?

practicalli-johnny14:04:03

@U013100GJ14 there is a Clojure layer variable that will set the size of the REPL buffer history

cider-repl-buffer-size-limit 100        ;; limit lines shown in REPL buffer 
100 is quite low although should still show results - unless you have more than 100 lines of results (in which case the Cider Inspector is much easier to work with. I believe the default value is 1000, so if you have a lower number, either comment out the variable or change the number to a more suitable value for your needs.

Kris C14:04:48

Uh, that was it, thank you @U05254DQM

👍 1