Add support for the "Not italic" escape code

This commit is contained in:
Niklas Higi
2018-08-14 12:29:12 +02:00
parent 49cf1a2cea
commit 44366ffd3c
+3
View File
@@ -1631,6 +1631,9 @@ export class InputHandler extends Disposable implements IInputHandler {
// not bold nor faint
flags &= ~FLAGS.BOLD;
flags &= ~FLAGS.DIM;
} else if (p === 23) {
// not italic
flags &= ~FLAGS.ITALIC;
} else if (p === 24) {
// not underlined
flags &= ~FLAGS.UNDERLINE;