spacemacs

Kris C 2022-04-22T13:13:31.392369Z

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-johnny 2022-04-22T14:16:03.917069Z

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

Kris C 2022-04-22T14:19:48.003539Z

Uh, that was it, thank you @jr0cket

👍 1