|
From: Rami O. <ram...@el...> - 2004-04-14 13:55:27
|
I'm using Console 3.2 with jEdit4.2pre11.
When I use scrolling the console does not follow anymore with new text =
printed to Console
before I empty the console.
Also is there seems to be no way to print to Console without line break.
This is definately something that a Console should be able to handle.
If we were to add now the normal
print() and println() methods it would not be backwards compatible =
because
print() is already used to print the message and a line :-(
Maybe we would now have to implement print() and printnoln() :-)
My proposal is to add method:
void print(Color color, String msg, boolean appendNewline);
and then make the existing method like this:
void print(Color color, String msg) {
print(color, msg, true);
}
-rami ojares |