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 9d817eb commit b44aedeCopy full SHA for b44aede
src/vs/workbench/contrib/terminalContrib/links/browser/terminalLinkOpeners.ts
@@ -37,8 +37,10 @@ export class TerminalLocalFileLinkOpener implements ITerminalLinkOpener {
37
}
38
const linkSuffix = link.parsedLink ? link.parsedLink.suffix : getLinkSuffix(link.text);
39
const selection: ITextEditorSelection | undefined = linkSuffix?.row === undefined ? undefined : {
40
- startLineNumber: linkSuffix?.row ?? 1,
41
- startColumn: linkSuffix?.col ?? 1
+ startLineNumber: linkSuffix.row ?? 1,
+ startColumn: linkSuffix.col ?? 1,
42
+ endLineNumber: linkSuffix.rowEnd,
43
+ endColumn: linkSuffix.colEnd
44
};
45
await this._editorService.openEditor({
46
resource: link.uri,
0 commit comments