Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- >Add, remove and change workspace folders
- A new proposed API was added to change workspace folders in the currently opened workspace:
- updateWorkspaceFolders(
- start: number,
- deleteCount: number,
- ...workspaceFoldersToAdd: { uri: Uri, name?: string }[]
- ): boolean
- This method can:
- >Remove existing workspace folders (by providing the index of the folder to delete via start and the number of folders to remove via deleteCount).
- >Add new workspace folders to a specific index (by providing the index where to add to via start, leaving deleteCount as 0 and providing the workspace folders to add as arguments).
- I hope this means what I think it means, that we can shift select and ctrl select folders from the directory and delete more than one at a time.
Advertisement
Add Comment
Please, Sign In to add comment