AddFolderToWorkspace is an extension that adds / removes the selected folder (multiple) to / from the workspace (VSC Workspace).
Of course, you can use the already built-in function:
`Workspaces: Add Folder To Workspace...` (workbench.action.addRootFolder).
But then you have to click through all the folders again and again.
AddFolderToWorkspace is a VSCode extension that streamlines the process of adding and removing folders to and from your projects. It provides a set of commands and context menu options to manage your project's folder structure directly from the editor.
Repository | GitHub | Visual Studio Marketplace |
---|---|---|
Status |
---|
This Function provides a searchable list of folders (Workspaces) that can be added simultaneous to the current VSC Workspace. All configured folders will be displayed.
Shortcut: strg + alt + k, p
Command: AddFolderToWorkspace: Add Folder to Workspace.
This Function provides a searchable list of folders (Workspaces) that can be removed simultaneous from the current VSC Workspace. All current open folders are displayed.
Shortcut: strg + alt + k, shift + p
Command: AddFolderToWorkspace: Remove Folder from Workspace.
Preferences -> Settings -> Extensions -> AddFolderToWorkspace
Name | Description | Default Value |
---|---|---|
addFolderToWorkspace.position | If position is 'Top', the new folder will be added at the beginning of the current workspace. If position is 'Bottom', the new folder will be added at the end of the current workspace. | Bottom |
addFolderToWorkspace.workspaces | Provides a list of folders (Workspaces) that can be added to the current VSC Workspace. | /Users/ |
addFolderToWorkspace.recursiveWorkspaces | Provides a searchable (only first level) list of folders (Workspaces) that can be added to the current VSC Workspace. | /Users/ |
To install this extension, you have three options:
Search and install online extension via VSC extensions menu.
Code
-> Preferences
-> Extensions
simply search for AddFolderToWorkspace
to install.
Download latest vsix file and install via extensions menu.
Code
-> Preferences
-> Extensions
-> Views and More Action
-> Install from VSIX
.
Download archive with the latest release and unpack it to VisualStudioCode extensions folder
$HOME/.vscode/extensions/
.
For download see VSCode-AddFolderToWorkspace
Enjoy!
Your Denny Korsukéwitz 🚀