mirror of
https://github.com/nuintun/command-manager.git
synced 2025-06-08 12:14:03 +08:00
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
'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;
|
|
};
|
|
};
|