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 1f00afe commit f73201aCopy full SHA for f73201a
src/vs/platform/terminal/common/xterm/shellIntegrationAddon.ts
@@ -330,10 +330,11 @@ export class ShellIntegrationAddon extends Disposable implements IShellIntegrati
330
return true;
331
}
332
case VSCodeOscPt.Property: {
333
- const [key, rawValue] = args[0].split('=');
334
- if (rawValue === undefined) {
+ const [key, ...rawValues] = args[0].split('=');
+ if (!rawValues.length) {
335
336
337
+ const rawValue = rawValues.join('=');
338
const value = this._deserializeMessage(rawValue);
339
switch (key) {
340
case 'Cwd': {
0 commit comments