You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(open vscode): launch via in-bundle code CLI on macOS
`open -a <App> --args` only forwards args on a cold launch; when VS Code is already running macOS drops the args and the vscode:// URL never reaches the mssql extension, so `sqlcmd open vscode` silently no-ops.
Add a platform-specific VSCode.launch that on darwin execs <App>/Contents/Resources/app/bin/code --open-url <url> directly, bypassing /usr/bin/open. Linux and Windows continue to use tool.Run unchanged. Extract tool.runCmd so platform launchers can supply their own *exec.Cmd while keeping the early-exit / stdio handling.
0 commit comments