Reputation: 8408
Can someone explain to me how less, vi and curses programs manage graphics output? Can they change individual characters on the screen or do they have to literary clear and redraw the screen whenever something changes?
It would be really neat if someone could hack a tiny less clone together, without all the boilerplate code.
Upvotes: 6
Views: 965
Reputation: 63839
There exist special Escape Codes that, when sent to the terminal, instruct the terminal to reposition the cursor without disrupting what's already being displayed.
Upvotes: 4