Remi Schnekenburger
Remi Schnekenburger
update in the signature of `WorkspaceEdit.set(uri: Uri, edits: ReadonlyArray): void;` and `WorkspaceEdit.set(uri: Uri, edits: ReadonlyArray): void;` see https://github.com/microsoft/vscode/blob/4e52791d3e2ecd20247ee5c774f0fa533299f369/src/vscode-dts/vscode.d.ts#L3955
new API introduced on `workspace` namespace, `save(URI) `and `saveAs(URI)` see https://github.com/microsoft/vscode/blob/e5447598324c57ac814c150148e7e4c830e0f9ee/src/vscode-dts/vscode.d.ts#L13298
It could be interesting to detect automatically from the terminal service all available shells from the environment, as for example looking on unix systems to `/etc/shells` file to create corresponding...
With vscode 1.86, workspace.registerFileSystemProvider() readonly option can now be a markdown string to explain why the file system is readonly. see https://github.com/microsoft/vscode/blob/e5447598324c57ac814c150148e7e4c830e0f9ee/src/vscode-dts/vscode.d.ts#L13663
#### What it does This pull request add the support of API introduced with VS Code 1.86 on TestRunProfile, the onDidChangeDefault event. It also adds the capability of changing default...
`TestRunProfile` can now provide a `onDidChangeDefault` event when `isDefault` is changed. see https://github.com/microsoft/vscode/blob/e5447598324c57ac814c150148e7e4c830e0f9ee/src/vscode-dts/vscode.d.ts#L17156
This bug tracks the differences between current master Theia VS Code API and VS Code 1.86.0: Public APIs: - [x] #13230 - [ ] #13352 - [ ] #13353 -...
A new proposed API is now used by git builtin extension: MultiDiff editor. The Multi-Editor allows the review of multiple changes across several files within the same editor. This task...
When all implementation tasks of #13356 have been addressed, the compatibility version of the VS code API can be increased to 1.86.0.
#### What it does This PR implements the stubbed API window#registerUriHandler(). This was not marked properly as '@stubbed', but the implementation returned nothing. A detailed explanation on how this is...