Implementing a visual studio code syntax highlighter - Spicery/Nutmeg GitHub Wiki

Get Started

Experimenting

You can launch an Extension Development Host window using F5 (or Run > Starting Debugging). I had trouble doing this until I fixed up my .vscode/launch.json. I copied over a working version:

// A launch configuration that launches the extension inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Extension",
            "type": "extensionHost",
            "request": "launch",
            "runtimeExecutable": "${execPath}",
            "args": [
                "--extensionDevelopmentPath=${workspaceFolder}"
            ]
        }
    ]
}

Tips