Skip to content

Commit

Permalink
Merge pull request #5027 from Tyriar/4916
Browse files Browse the repository at this point in the history
Finish OSC hyperlinks when the second param is only whitespace
  • Loading branch information
Tyriar committed Apr 12, 2024
2 parents 887e5a6 + e845abc commit d2b8e6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/InputHandler.ts
Expand Up @@ -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();
Expand Down

0 comments on commit d2b8e6c

Please sign in to comment.