FlyingSquid
FlyingSquid

Reputation: 57

Weirdly, settings not applying in Visual Studios Code

I'm learning java currently, and I have downloaded VS code with the Red Hat java extension pack. My problem is, modifications to the settings GUI or settings.json do not seem to apply.

I have 2 problems:

files not hidden

What I've done: Googled it, and made changes to settings. However, nothings changed, even after a restart.

My settings for user: user settings

My settings for workspace: workspace settings

Does anyone know what is going on and how to fix this? Thanks!!!

Upvotes: 1

Views: 170

Answers (1)

Mark
Mark

Reputation: 182591

Try

"files.exclude" : {
  **/*.class": true    // note the * ti include
}

Note the * prior to .class to indicate any amount of characters. You were excluding file names like .class literally and not something.class.

Upvotes: 1

Related Questions