Home > Enterprise >  Disable dimming / graying out of files & folders which are not in the workspace in VSCode?
Disable dimming / graying out of files & folders which are not in the workspace in VSCode?

Time:05-12

We are currently running a VSCode explorer

Thanks!

CodePudding user response:

Files or folders in your .gitignore file will get dimmed out. I haven't found a way to avoid that with a specific SCM or git setting other than to disable the generic setting:

Explorer > Decorations: Colors

but then you will lose the altered colors of modified files too for example, which might be acceptable.

I would think the Git > Decorations: Enabled setting might affect that dimmed-out color but it doesn't seem to.

  • Related