update files

This commit is contained in:
nuintun
2015-11-24 19:00:34 +08:00
parent bc67b1c0d1
commit 29ec604905
30 changed files with 2009 additions and 8849 deletions

View File

@@ -0,0 +1,11 @@
'use strict';
var states = require('../states');
module.exports = function (Terminal){
// ESC H Tab Set (HTS is 0x88).
Terminal.prototype.tabSet = function (){
this.tabs[this.x] = true;
this.state = states.normal;
};
};