;
case 'D':
this._terminal.index();
+ this.state = ParserState.NORMAL;
break;
// ESC M Reverse Index ( RI is 0x8d).
case 'M':
this._terminal.reverseIndex();
+ this.state = ParserState.NORMAL;
break;
// ESC % Select default/utf-8 character set.
// ESC H Tab Set (HTS is 0x88).
case 'H':
this._terminal.tabSet();
+ this.state = ParserState.NORMAL;
break;
// ESC = Application Keypad (DECKPAM).
this.cursorState = 0;
this.cursorHidden = false;
this.convertEol;
- this.state = 0;
this.queue = '';
this.scrollTop = 0;
this.scrollBottom = this.rows - 1;
this.y--;
this.scroll();
}
- this.state = normal;
};
} else {
this.y--;
}
- this.state = normal;
};
*/
Terminal.prototype.tabSet = function() {
this.tabs[this.x] = true;
- this.state = normal;
};