diff options
author | 2024-10-09 07:36:18 -0400 | |
---|---|---|
committer | 2024-10-09 12:36:18 +0100 | |
commit | b9e8e96354019c21c8b73585bea74b84b9b092ee (patch) | |
tree | 33b46954eb8edddeb432305eb1cff84c506e76e2 | |
parent | c6fd1df695d0f2a24bb49e6954064f92664ccf67 (diff) | |
download | astro-b9e8e96354019c21c8b73585bea74b84b9b092ee.tar.gz astro-b9e8e96354019c21c8b73585bea74b84b9b092ee.tar.zst astro-b9e8e96354019c21c8b73585bea74b84b9b092ee.zip |
add info about content intellisense (#12164)
-rw-r--r-- | packages/astro/src/@types/astro.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 262109ccc..19933ecb6 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; |