From b9e8e96354019c21c8b73585bea74b84b9b092ee Mon Sep 17 00:00:00 2001 From: Arpan Patel Date: Wed, 9 Oct 2024 07:36:18 -0400 Subject: [PATCH] add info about content intellisense (#12164) --- packages/astro/src/@types/astro.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 262109ccc2d5..19933ecb6224 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -2173,7 +2173,7 @@ export interface AstroUserConfig { * } * ``` * - * To use this feature with the Astro VS Code extension, you must also enable the `astro.content-intellisense` option in your VS Code settings. For editors using the Astro language server directly, pass the `contentIntellisense: true` initialization parameter to enable this feature. + * To use this feature with the Astro VS Code extension, you must also enable the `astro.content-intellisense` option in your VS Code settings. For editors using the Astro language server directly, pass the `contentIntellisense: true` initialization parameter to enable this feature. See the [content Intellisense implementation PR](https://github.com/withastro/language-tools/pull/915) for more details about this early feature. */ contentIntellisense?: boolean;