Skip to content

Commit

Permalink
address feedback, cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykim1 committed Jan 23, 2025
1 parent 541849b commit ee8909f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/client/terminals/pythonStartupLinkProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,8 @@ export class CustomTerminalLinkProvider implements TerminalLinkProvider<CustomTe
_token: CancellationToken,
): ProviderResult<CustomTerminalLink[]> {
const links: CustomTerminalLink[] = [];
// Question: What if context.line is truncated because of user zoom setting?
// Meaning what if this line is separated into two+ line in terminal?
const expectedNativeLink = 'VS Code Native REPL';

// eslint-disable-next-line no-cond-assign
if (context.line.includes(expectedNativeLink)) {
links.push({
startIndex: context.line.indexOf(expectedNativeLink),
Expand Down

0 comments on commit ee8909f

Please sign in to comment.