Skip to content

Commit ee8909f

Browse files
committed
address feedback, cleanup
1 parent 541849b commit ee8909f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/client/terminals/pythonStartupLinkProvider.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,8 @@ export class CustomTerminalLinkProvider implements TerminalLinkProvider<CustomTe
2121
_token: CancellationToken,
2222
): ProviderResult<CustomTerminalLink[]> {
2323
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?
2624
const expectedNativeLink = 'VS Code Native REPL';
2725

28-
// eslint-disable-next-line no-cond-assign
2926
if (context.line.includes(expectedNativeLink)) {
3027
links.push({
3128
startIndex: context.line.indexOf(expectedNativeLink),

0 commit comments

Comments
 (0)