terminal: minor fix for clear screen.

This commit is contained in:
Christopher Jeffrey 2015-07-28 03:05:14 -07:00
parent 852d780990
commit 0f655de980
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ Terminal.prototype.kill = function() {
this.pty.destroy(); this.pty.destroy();
this.pty.kill(); this.pty.kill();
} }
this.term.write('\x1b[H\x1b[2J'); this.term.write('\x1b[H\x1b[J');
}; };
/** /**