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.
This commit is contained in:
agra
2026-06-01 16:52:56 +03:00
parent 0d7f786db2
commit 5d275ee274

View File

@@ -27,6 +27,11 @@
"configuration": "./language-configuration.json"
}
],
"breakpoints": [
{
"language": "sx"
}
],
"grammars": [
{
"language": "sx",