update files

This commit is contained in:
nuintun
2015-11-26 10:53:50 +08:00
parent f763bf9759
commit ef1690ae5f
12 changed files with 130 additions and 35 deletions

View File

@@ -189,7 +189,9 @@ module.exports = function (Terminal){
break;
// show cursor
case 25:
this.cursorHidden = false;
this.cursor = true;
this.showCursor();
break;
// alt screen buffer cursor
case 1049:
@@ -382,7 +384,9 @@ module.exports = function (Terminal){
break;
// hide cursor
case 25:
this.cursorHidden = true;
this.cursor = false;
this.hideCursor();
break;
// alt screen buffer cursor
case 1049: