cider

rschmukler 2025-03-07T16:02:38.787269Z

Sometimes when reusing a dead repl buffer I notice that cider will put the repl prompt below some existing stdout and that the stdout will be rendered above the existing stdout. Clearing the buffer doesn't seem to get rid of it. Is there any way to reset it without killing the buffer / jacking in again?

oyakushev 2025-03-07T16:23:13.104819Z

Does it completely block you from evaluating?

rschmukler 2025-03-07T16:26:27.924539Z

No, I can evaluate and everything works properly, it just basically doesn't clear anything from the previous repl and starts appending after. Eg.

Hello world
user>

** Repl Died**
Then jack in and reuse and I see:
Hello world
user>
user>
and if I (print "Foo")
Hello world
user>
Foo
user>
cider-repl-clear-buffer yields me back to
Hello world
user>
user>

oyakushev 2025-03-08T15:13:57.739429Z

Could you please create a ticket for this at https://github.com/clojure-emacs/cider?