Tip: Terminal hyperlinks when using Cursor with Shopify CLI

If you are using Cursor, it reports a version that makes the supports-hyperlinks library think that you’re using a version of VS Code that doesn’t support hyperlinks in the terminal.

Shopify CLI uses hyperlinks in a few places, and I think they improve the experience. You can force them by adding the following to your user settings.json

    "terminal.integrated.env.osx": {
        "FORCE_HYPERLINK": "1"
    }

Replace .osx with .linux or .windows as needed.

2 Likes