Skip to content

flawiddsouza/favorite-folders

Repository files navigation

Favorite Folders

This extension gives you a list of all the direct folders under the settings.

extension

Extension 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.

Examples

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"
    },
]

Known issues

If you're on WSL, you'll see this when you open settings for the extension: settings-wsl-1

You'll have to select the 2nd tab to get the settings for the remote WSL environment. settings-wsl-2

This is a known issue in VS Code (microsoft/vscode#102146).