Benjamin Pasero
Benjamin Pasero
Can you try to reproduce with our nightly insider builds? You can give our preview releases a try from: https://code.visualstudio.com/insiders/
This maybe the reason why Slack opens their "command center" on mouse down (we open on mouse up I think). As you can see below, I can still move the...
We have code to migrate over workspace settings when entering a workspace and the current workspace is a folder: https://github.com/microsoft/vscode/blob/4ed0329e9c5e12e2c7c59697facc96020b0768ab/src/vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService.ts#L332-L335 We also have code to migrate workspace storage: https://github.com/microsoft/vscode/blob/4ed0329e9c5e12e2c7c59697facc96020b0768ab/src/vs/workbench/services/workspaces/electron-sandbox/workspaceEditingService.ts#L167 Not...
Hm, I see, we probably do not trigger this when you are in a workspace and you save it or duplicate it. Since the workspace file contains the settings, they...
Actually I cannot reproduce the issue at least when using "File > Save Workspace As..." and we do migrate settings and state in that case: https://github.com/microsoft/vscode/blob/4ed0329e9c5e12e2c7c59697facc96020b0768ab/src/vs/workbench/services/workspaces/electron-sandbox/workspaceEditingService.ts#L167 @featherfly can you provide...
Ok thanks, yeah that is expected the way it is implemented.
Please see https://github.com/microsoft/vscode/wiki/How-to-Contribute. Specifically this item is not open for help as I think the implementation would be a bit more complex then I am willing to review.
The workbench core file service is not doing anything special with regards to permissions: it writes from the server process of the remote server and that one probably runs with...
Slightly related question to @shiftkey and maybe @BinaryMuse: so far in VSCode we have been using `keytar` from the renderer as well but think about moving it to the Electron...
Great thanks for clarifying 👍