Peep for Visual Studio CodeQuickly toggle between hiding and showing files defined in your projects files.exclude setting. GuideBefore using this extension in a project you will need to define the folders and files that you want to be able to toggle between
hidden and visible. To do this you will need to create a Here is an example of what the settings.json file might look like:
In the file above I have specified that the node_modules, dist, and lib folders are all currently visible. To quickly make them hidden, all
you have to do is execute the You can also execute the Note that when this extension is updating the files.exclude property in your settings.json file it will first read in the entire file, then update the file.exclude values in memory, and finally write the entire settings back to the file. This means that any special type of formatting or spacing will be lost. |