spacemacs 2022-04-22

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?

@kristjan.cocev 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.

Uh, that was it, thank you @jr0cket

👍 1