Is it possible to jump to a line number with a markdown link in VSCode?
for example
| [/path/to/MyFile.ts](/path/to/MyFile.ts<---line-number) Jump to MyFile.ts line 123
Thanks.
Is it possible to jump to a line number with a markdown link in VSCode?
for example
| [/path/to/MyFile.ts](/path/to/MyFile.ts<---line-number) Jump to MyFile.ts line 123
Thanks.
Yes, use L123
as the link fragment. For example:
[/path/to/MyFile.ts](/path/to/MyFile.ts#L123)
[MyRelativeFile.ts](MyRelativeFile.ts#L123)
I think what you're looking for is an Anchor link.
This appeared to be a bug is vscode. Which is fixed now. Thanks everyone for the answer.