From 5d275ee2749709709f9e6d327f0aa5ccd4200025 Mon Sep 17 00:00:00 2001 From: agra Date: Mon, 1 Jun 2026 16:52:56 +0300 Subject: [PATCH] vscode: declare contributes.breakpoints for sx (enable breakpoint gutter) VSCode disables the breakpoint gutter for a language unless an extension declares breakpoints are valid for it. The sx extension registered the language but never contributed breakpoints, so clicking the gutter in a .sx file did nothing. Add the breakpoints contribution so users can set breakpoints in .sx files without the per-workspace debug.allowBreakpointsEverywhere hack. --- editors/vscode/package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 39f789d..85b8a1e 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -27,6 +27,11 @@ "configuration": "./language-configuration.json" } ], + "breakpoints": [ + { + "language": "sx" + } + ], "grammars": [ { "language": "sx",