How can I make VSCode handle textedit:// URIs?

Viewed 68

I'm trying to set VSCode to open on a specific line and column when clicking on an item inside of a PDF that contains the URI for that specific line and column. These PDFs have all those URIs with the textedit:// prefix. I still can’t figure out how to do this, but I kind of got to know that I need to use 「 export LYEDITOR="code --goto %(file)s:%(line)s:%(column)s" 」somewhere.

Please help me, I need this so much!

1 Answers

I've implemented this in VSLilyPond

Basically, what is needed is a custom PDF viewer that can intercept these links, which I've written and bundled into that extension.

Related