Guest User

Untitled

a guest
Feb 11th, 2018
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. >Add, remove and change workspace folders
  2. A new proposed API was added to change workspace folders in the currently opened workspace:
  3.  
  4. updateWorkspaceFolders(
  5. start: number,
  6. deleteCount: number,
  7. ...workspaceFoldersToAdd: { uri: Uri, name?: string }[]
  8. ): boolean
  9. This method can:
  10.  
  11. >Remove existing workspace folders (by providing the index of the folder to delete via start and the number of folders to remove via deleteCount).
  12.  
  13. >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).
  14.  
  15. 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