clj-commons / clooj

clooj, a lightweight IDE for clojure
Other
421 stars 49 forks source link

No newline in REPL output before printing user input #103

Open DanBurton opened 12 years ago

DanBurton commented 12 years ago

This is a really minor thing, but it's annoying to see this:

user=>
(+ 1 1)
2

Instead of this:

user=> (+ 1 1)
2

Can we just not print that newline, and simply flush the output (if that's necessary) after printing "user=> "? I do think that it should keep printing "user=> " when it is ready to accept more input.

ghost commented 11 years ago

I think this should be configurable (do newline or don't newline), because when I do Ctrl+Enter to eval form or Ctrl+E to eval file, I like it better with newline.