QB64Official / vscode

QB64 Extension for Visual Studio Code.
MIT License
13 stars 3 forks source link

hoverProvider link open fix #105

Closed grymmjack closed 1 year ago

grymmjack commented 1 year ago

This fixes the hoverProvider links to open properly according to the helpPath.

By using this setting:

    "workbench.editorAssociations": {
        "*.md": "vscode.markdown.preview.editor"
    }

You force the markdown editors when a MD file is opened, to use the preview mode. This is ideal for me.

Now when you hover over something, and click a link that is in the hover markdown, it should open in your editor (and in preview mode if you add the setting above).