diff --git a/.github/llms.md b/.github/llms.md index 902a7b19..2f45c4d6 100644 --- a/.github/llms.md +++ b/.github/llms.md @@ -19,9 +19,6 @@ Extension Pack for Java is a collection of popular extensions that can help writ - Import Gradle projects via [Gradle Build Server](https://github.com/microsoft/build-server-for-gradle) - [📦 Project Manager for Java](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-dependency) - Manage Java projects, referenced libraries, resource files, packages, classes, and class members -- [📦 Visual Studio IntelliCode](https://marketplace.visualstudio.com/items?itemName=VisualStudioExptTeam.vscodeintellicode) - - AI-assisted development - - Completion list ranked by AI ## Label When labeling an issue, follow the rules below per label category: diff --git a/.vscode/settings.json b/.vscode/settings.json index 2f7de676..2cbc3a03 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -16,7 +16,6 @@ "redhat", "reduxjs", "vscjava", - "vscodeintellicode", "walkthrough", "walkthroughs" ] diff --git a/README.md b/README.md index c6708477..5393758f 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,6 @@ By installing Extension Pack for Java, the following extensions are installed: - Import Gradle projects via [Gradle Build Server](https://github.com/microsoft/build-server-for-gradle) - [📦 Project Manager for Java](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-dependency) - Manage Java projects, referenced libraries, resource files, packages, classes, and class members -- [📦 Visual Studio IntelliCode](https://marketplace.visualstudio.com/items?itemName=VisualStudioExptTeam.vscodeintellicode) - - AI-assisted development - - Completion list ranked by AI ## Other Recommendations diff --git a/package.json b/package.json index 6394f045..593e86e7 100644 --- a/package.json +++ b/package.json @@ -376,8 +376,7 @@ "vscjava.vscode-java-test", "vscjava.vscode-maven", "vscjava.vscode-gradle", - "vscjava.vscode-java-dependency", - "VisualStudioExptTeam.vscodeintellicode" + "vscjava.vscode-java-dependency" ], "dependencies": { "@iconify-icons/codicon": "1.2.8", diff --git a/src/beginner-tips/assets/tabs/FaqPanel.tsx b/src/beginner-tips/assets/tabs/FaqPanel.tsx index fc62396b..99810869 100644 --- a/src/beginner-tips/assets/tabs/FaqPanel.tsx +++ b/src/beginner-tips/assets/tabs/FaqPanel.tsx @@ -76,10 +76,6 @@ export default function FaqPanel() {
It could take longer for the language server to load a project which references lots of dependencies. Those dependencies need to be resolved and downloaded from the internet. So the network connection plays a critical role in the process.
-- This is because Visual Studio IntelliCode is working. IntelliCode ranks the suggestions using the model trained from the source code of popular open source projects. The items with the stars are the ones that fit the current context the most. -
Yes. You'll need to install the Lombok extension, which enables VS Code to process Lombok annotations. To learn more about alternatives and details, visit this page.