mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-21 21:52:10 +02:00
Bug 573064: Support full clear - extended "E3" capability
Change-Id: I9d4f7fffb11cc5386eb0a4e5c0445f1fc518b0a5
This commit is contained in:
parent
6dbad0b10e
commit
e033c50e28
1 changed files with 5 additions and 0 deletions
|
@ -784,6 +784,11 @@ public class VT100Emulator implements ControlListener {
|
|||
text.eraseAll();
|
||||
break;
|
||||
|
||||
case 3:
|
||||
// Erase display and clear scrollback (extended "E3" capability)
|
||||
text.clearAll();
|
||||
break;
|
||||
|
||||
default:
|
||||
Logger.log("Unexpected J-command parameter: " + ansiParameter); //$NON-NLS-1$
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue