This extension gives you a list of all the direct folders under the settings.
This extension contributes the following settings:
favoriteFolders.baseFolders
: set base folders from where your favorite folders will be listed.favoriteFolders.baseFoldersExtended
: set base folders from where your favorite folders will be listed. This parameter allows you to set a name to a path.
Example: specify a list of base Folders:
"favoriteFolders.baseFolders": [
"~/reposPersonal",
"~/reposWork"
]
Example: specify a list of base Folders (with names):
"favoriteFolders.baseFoldersExtended": [
{
"name": "Personal repositories",
"path": "~/reposPersonal"
},
{
"name": "Work repositories",
"path": "~/reposWork"
},
]
If you're on WSL, you'll see this when you open settings for the extension:
You'll have to select the 2nd tab to get the settings for the remote WSL environment.
This is a known issue in VS Code (microsoft/vscode#102146).