Output and return to console on next line
Posted: Sun May 02, 2004 7:43 am
I am not sure what can be done to reach this. Is it possible by
modifying the TK front end or does it need a new function in newLISP.
So when I do this:
The cursor (_) stay behind Test and does not return to the prompt.
When I hit on enter again it shows:
What I want, is a silent with return to prompt:
For what can it be used. I want to make my own app with a console window
with a small height (only a few lines) at the bottom of the screen.
The user should be able to type in a command and get a feedback
on the line above of the prompt-line.
Possible?
modifying the TK front end or does it need a new function in newLISP.
So when I do this:
Code: Select all
> (silent(print "Test"))
Test_
When I hit on enter again it shows:
Code: Select all
> (silent(print "Test"))
Test
> _
Code: Select all
> (silentret(begin(DoMyProc)(print "Done")))
Done
> _
with a small height (only a few lines) at the bottom of the screen.
The user should be able to type in a command and get a feedback
on the line above of the prompt-line.
Possible?