We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21e4301 commit a5e4f90Copy full SHA for a5e4f90
src/common/InputHandler.ts
@@ -2713,12 +2713,6 @@ export class InputHandler extends Disposable implements IInputHandler {
2713
attr.extended = attr.extended.clone();
2714
attr.extended.underlineColor = -1;
2715
attr.updateExtended();
2716
- } else if (p === 100) { // FIXME: dead branch, p=100 already handled above!
2717
- // reset fg/bg
2718
- attr.fg &= ~(Attributes.CM_MASK | Attributes.RGB_MASK);
2719
- attr.fg |= DEFAULT_ATTR_DATA.fg & (Attributes.PCOLOR_MASK | Attributes.RGB_MASK);
2720
- attr.bg &= ~(Attributes.CM_MASK | Attributes.RGB_MASK);
2721
- attr.bg |= DEFAULT_ATTR_DATA.bg & (Attributes.PCOLOR_MASK | Attributes.RGB_MASK);
2722
} else {
2723
this._logService.debug('Unknown SGR attribute: %d.', p);
2724
}
0 commit comments