We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b19d859 commit 6c9926dCopy full SHA for 6c9926d
main/src/emulator/TextTerm.ts
@@ -2007,12 +2007,10 @@ export class TextEmulator implements TextEmulatorApi {
2007
this.#state = ParserState.OSC_ITERM_PAYLOAD_ESC;
2008
break;
2009
}
2010
- if (this.#itermParameters.appendPayloadCodePoint(codePoint)) {
2011
- break;
2012
- }
2013
-
2014
if (codePoint === CODEPOINT_BEL) {
2015
this._executeITerm(this.#itermParameters);
+ } else if (this.#itermParameters.appendPayloadCodePoint(codePoint)) {
+ break;
2016
2017
2018
this.#itermParameters = null;
0 commit comments