How to display hidden files with visual studio code

The Open File dialog box Visual Studio Codedoes not show hidden files. For example, looking at my home directory, none of the .files are shown:

enter image description here

I looked at the file settings.jsonbut did not find the appropriate settings. So how to set it up correctly vscode?

+35
source share
2 answers

There are no settings, but you can click cmd shift .in the open file dialog to see hidden files

( source )

+69
source

Under Linux, you can right-click on files in the file selection window and check the "Show hidden files" box.

+2

Source: https://habr.com/ru/post/1687592/


All Articles