If I
System.out.print("something\r");
at console, I have cursor back at the beginning of line, and finally after
System.out.print("something\r");
System.out.print(" any\r");
I have
anything
typed.
But at Eclipse console I get
something
anything
as if it treated \r
as CR/LF.
How can I setup this?