fix(adminui): auto-suggest tag paths inside string literals (quickSuggestions.strings)

This commit is contained in:
Joseph Doherty
2026-06-09 15:46:30 -04:00
parent 9444348c0d
commit 72fcde5b44
@@ -152,7 +152,10 @@
theme: "vs", minimap: { enabled: false }, scrollBeyondLastLine: false,
automaticLayout: true, fontSize: 13, lineNumbers: "on",
renderLineHighlight: "line", readOnly: !!options.readOnly,
tabSize: 4, insertSpaces: true, wordWrap: "off", fixedOverflowWidgets: true
tabSize: 4, insertSpaces: true, wordWrap: "off", fixedOverflowWidgets: true,
// Auto-suggest inside string literals too, so tag-path completion surfaces while typing
// inside ctx.GetTag("…") / ctx.SetVirtualTag("…") without requiring an explicit Ctrl+Space.
quickSuggestions: { other: true, comments: false, strings: true }
});
let diagTimer = null;
const scheduleDiagnostics = function () {