Skip to content

Commit

Permalink
Merge pull request #1613 from shroudedcode/support-not-italic
Browse files Browse the repository at this point in the history
Add support for the "Not italic" escape code
  • Loading branch information
Tyriar committed Aug 14, 2018
2 parents 49cf1a2 + 44366ff commit 0e45909
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/InputHandler.ts
Expand Up @@ -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;
Expand Down

0 comments on commit 0e45909

Please sign in to comment.