From 1e352e9d5c47853c08e989cb080c63fb4af15aa6 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Wed, 26 Nov 2025 17:24:51 +0100 Subject: [PATCH] Prompts/Agents/Instructions front matter should auto trigger suggestions for top-level entries (#279617) --- extensions/prompt-basics/package.json | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/extensions/prompt-basics/package.json b/extensions/prompt-basics/package.json index cd53e185bb6..f1d4ee98b29 100644 --- a/extensions/prompt-basics/package.json +++ b/extensions/prompt-basics/package.json @@ -92,9 +92,10 @@ "editor.wordWrap": "on", "editor.quickSuggestions": { "comments": "off", - "strings": "off", - "other": "off" - } + "strings": "on", + "other": "on" + }, + "editor.wordBasedSuggestions": "off" }, "[instructions]": { "editor.insertSpaces": true, @@ -106,9 +107,10 @@ "editor.wordWrap": "on", "editor.quickSuggestions": { "comments": "off", - "strings": "off", - "other": "off" - } + "strings": "on", + "other": "on" + }, + "editor.wordBasedSuggestions": "off" }, "[chatagent]": { "editor.insertSpaces": true, @@ -120,9 +122,10 @@ "editor.wordWrap": "on", "editor.quickSuggestions": { "comments": "off", - "strings": "off", - "other": "off" - } + "strings": "on", + "other": "on" + }, + "editor.wordBasedSuggestions": "off" } } },