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 d1f0b8c commit 8854bb6Copy full SHA for 8854bb6
src/client/terminals/pythonStartupLinkProvider.ts
@@ -24,6 +24,8 @@ export class CustomTerminalLinkProvider implements vscode.TerminalLinkProvider<C
24
_token: vscode.CancellationToken,
25
): vscode.ProviderResult<CustomTerminalLink[]> {
26
const links: CustomTerminalLink[] = [];
27
+ // Question: What if context.line is truncated because of user zoom setting?
28
+ // Meaning what if this line is separated into two+ line in terminal?
29
const expectedNativeLink = 'this is link to launch native repl';
30
31
// eslint-disable-next-line no-cond-assign
0 commit comments