We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e96748c + a5e4f90 commit b2133d9Copy full SHA for b2133d9
src/common/InputHandler.ts
@@ -2724,12 +2724,6 @@ export class InputHandler extends Disposable implements IInputHandler {
2724
attr.extended = attr.extended.clone();
2725
attr.extended.underlineColor = -1;
2726
attr.updateExtended();
2727
- } else if (p === 100) { // FIXME: dead branch, p=100 already handled above!
2728
- // reset fg/bg
2729
- attr.fg &= ~(Attributes.CM_MASK | Attributes.RGB_MASK);
2730
- attr.fg |= DEFAULT_ATTR_DATA.fg & (Attributes.PCOLOR_MASK | Attributes.RGB_MASK);
2731
- attr.bg &= ~(Attributes.CM_MASK | Attributes.RGB_MASK);
2732
- attr.bg |= DEFAULT_ATTR_DATA.bg & (Attributes.PCOLOR_MASK | Attributes.RGB_MASK);
2733
} else {
2734
this._logService.debug('Unknown SGR attribute: %d.', p);
2735
}
0 commit comments