Merge pull request #5027 from Tyriar/4916

Finish OSC hyperlinks when the second param is only whitespace
This commit is contained in:
Daniel Imms
2024-04-12 16:52:45 -07:00
committed by GitHub
+1 -1
View File
@@ -2979,7 +2979,7 @@ export class InputHandler extends Disposable implements IInputHandler {
if (args[1]) {
return this._createHyperlink(args[0], args[1]);
}
if (args[0]) {
if (args[0].trim()) {
return false;
}
return this._finishHyperlink();