We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b829ad8 commit 0b56b56Copy full SHA for 0b56b56
1 file changed
addons/xterm-addon-canvas/src/TextRenderLayer.ts
@@ -95,6 +95,12 @@ export class TextRenderLayer extends BaseRenderLayer {
95
continue;
96
}
97
98
+ // exit early for NULL and SP
99
+ const code = cell.getCode();
100
+ if (code === 0 || code === 32) {
101
+ continue;
102
+ }
103
+
104
// Process any joined character ranges as needed. Because of how the
105
// ranges are produced, we know that they are valid for the characters
106
// and attributes of our input.
0 commit comments