I got a question regarding the file exclusion feature in VS Code. Currently I am working with LaTex in VSC and I would like Code to ignore most of the master.* files being shown in the File Explorer, except of course the master.tex and master.pdf.
I tried adding some patterns to the settings.json:
"files.exclude": {
"master.tex": false,
"master.*": true,
"*.lol": true
},
As well as:
"files.exclude": {
"master.*": true,
"master.tex": false,
"*.lol": true
},
But these don't work, as they exclude all master.* files. I could of course add all the extension by hand, but I would really like there to be a more elegant solution.
Thank you in advance :)