We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a055870 commit ef93f6eCopy full SHA for ef93f6e
1 file changed
src/vs/workbench/api/common/extHostTerminalService.ts
@@ -670,8 +670,9 @@ export abstract class BaseExtHostTerminalService implements IExtHostTerminalServ
670
return;
671
}
672
cachedLink.provider.handleTerminalLink(cachedLink.link);
673
-
674
- // TODO: Handle when result is false
+ // TODO: Handle when result is false? Should this be return void instead and remove
+ // TerminalLink.target? It's a simple call to window.openUri for the extension otherwise
675
+ // and would simplify the API.
676
677
678
private _onProcessExit(id: number, exitCode: number | undefined): void {
0 commit comments