Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual studio code notification asking if I want to exclude Java project settings files or not

I suddenly got this notification when open a flutter project in vs code: Do you want to exclude the Visual Studio Code Java project settings files (.classpath, .project. .settings, .factorypath) from the file explorer? (options: Exclude Globally, Exclude in Workspace, Never)

I chose Never for the time being, but I was wondering what it even implies?

like image 460
Jaime Avatar asked Sep 20 '19 18:09

Jaime


People also ask

How do you exclude files in VS Code search?

To exclude a folder, go to File > Preferences, and search for file. exclude in the search settings. You can add the pattern of the folder you don't want Visual Studio Code to open.

How do I stop a Java program in VS Code?

Type in a suitable Shortcut, e.g. Ctrl + Alt + T , and press enter. Now the "Terminate Task" command is on the first part of the Keyboard Shortcuts list (with text "User" in the column Source), and you can use it in the terminal.

Does VS Code support Java?

VS Code supports code completion and IntelliSense for Java through Language Support for Java™ by Red Hat. It also provides AI-assisted IntelliSense called IntelliCode by putting what you're most likely to use at the top of your completion list. For more details, see Java Code Navigation and Editing.


1 Answers

This is a prompt that comes from the Java extension from VS Code:

https://github.com/redhat-developer/vscode-java/blob/06793b174437fee55985c62917f08da926f37058/src/settings.ts#L73

I guess it's asking whether you want those java-related project files to show up in the VS Code explorer side bar, or be hidden (if you choose to exclude, it will write exclusions into your VS Code settings so they are hidden).

like image 158
Danny Tuppeny Avatar answered Sep 19 '22 12:09

Danny Tuppeny