inf-clojure 2024-07-18

Hi! I'm trying inf-clojure, and I noticed something is annoying me. Pressing enter doesn't make a new line with the user=>. Is that related to inf-clojure or something in my emacs configuration?

what about control-j?

Same thing; it breaks the line but doesn't return the prompt =>

Does it happen to you?

yes it does. same behavior

does it work correctly when given inputs? (+ 1 1) etc?

Yes, the repl is not blocked.

What is interesting with control-j is that after putting some value, it returned multiple times user=>

user=> 





2
user=> user=> user=> user=> user=> user=> 2

And works fine evaluating

user=> 2

2
user=> 2
2
user=> 2
2
user=> 

This is the behavior I expected to have; the same when I run in my terminal clj

$ clj
Clojure 1.11.3
user=> 
user=> 
user=> 
user=> 
user=> 
user=> 
user=>  

@bozhidar, the https://github.com/clojure-emacs/inf-clojure/issues/216 has been created in Gihub. Please let me know if you need any more info.

👍 1

Feel free to open a ticket about this. Likely we'll need to add some special handling for this case.

👍 1