VS Code Configuration for Mac

Asked

Viewed 67 times

1

Good afternoon, you guys!

I have a question, on how to hide these files that the mac generates within Visual Studio Code.

Does anyone know any way to hide these . _.extencao files? Because it disturbs a lot when organizing inside the explorer.

inserir a descrição da imagem aqui

2 answers

1


You have to add these files in the delete list. That’s up to a default functionality of VS Code, just follow these steps.

inserir a descrição da imagem aqui

Note the image above that by default VS CODE already handles these extensions

  "files.exclude": {
    "**/.git": true,
    "**/.svn": true,
    "**/.hg": true,
    "**/CVS": true,
    "**/.DS_Store": true
  },

But in your case to delete from the listing those files that start with ._ you must do so:

"files.exclude": {
    "**/._*": true
}
  • Shoow, thanks man, I was already getting loco with this kkk mess

  • @Nice juniorrocha you solved there, thank goodness we have these options to configure rss. Good luck there, Abs

0

  1. Press F1 on vscode
  2. Type: Workspace
  3. Go to: Preferences: Open Workspace Settings
  4. Type: files.exclude
  5. Add new File entries that you want to 'Delete' / 'Hide'
  6. Ready

Browser other questions tagged

You are not signed in. Login or sign up in order to post.