mirror of
https://github.com/nuintun/command-manager.git
synced 2025-06-07 03:14:07 +08:00
15 lines
281 B
JavaScript
15 lines
281 B
JavaScript
/**
|
|
* Created by nuintun on 2015/11/24.
|
|
*/
|
|
|
|
'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;
|
|
};
|
|
};
|