From 44366ffd3c46df3b01d20155c60156bc33fdec7f Mon Sep 17 00:00:00 2001 From: Niklas Higi Date: Tue, 14 Aug 2018 12:29:12 +0200 Subject: [PATCH] Add support for the "Not italic" escape code --- src/InputHandler.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/InputHandler.ts b/src/InputHandler.ts index 0419c318..42b1b095 100644 --- a/src/InputHandler.ts +++ b/src/InputHandler.ts @@ -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;