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 541849b commit ee8909fCopy full SHA for ee8909f
src/client/terminals/pythonStartupLinkProvider.ts
@@ -21,11 +21,8 @@ export class CustomTerminalLinkProvider implements TerminalLinkProvider<CustomTe
21
_token: CancellationToken,
22
): ProviderResult<CustomTerminalLink[]> {
23
const links: CustomTerminalLink[] = [];
24
- // Question: What if context.line is truncated because of user zoom setting?
25
- // Meaning what if this line is separated into two+ line in terminal?
26
const expectedNativeLink = 'VS Code Native REPL';
27
28
- // eslint-disable-next-line no-cond-assign
29
if (context.line.includes(expectedNativeLink)) {
30
links.push({
31
startIndex: context.line.indexOf(expectedNativeLink),
0 commit comments