Alexandru Dima
Alexandru Dima
From https://github.com/Microsoft/vscode/issues/36997 To make your extension entirely compatible with a distribution of VSCode that uses ASAR, and to make your extension work with both VSCode stable and VSCode insiders, you...
You would need to provide a custom implementation of `IEditorService`. Services can be overriden when creating the editor (last argument): ```ts /** * Create a new editor under `domElement`. *...
@kitsonk :+1: That is the correct way to inject a different `editorService` in the editor. Here is a complete self-contained example that triggers the `editorService`: You can run it anywhere...
@AviVahl Exposing the services will leak hundreds of new types to `monaco.d.ts`. It would require quite a lot of work in [`monaco.d.ts.recipe`](https://github.com/Microsoft/vscode/blob/master/build/monaco/monaco.d.ts.recipe) to accomodate all those types that need to...
I've created https://github.com/Microsoft/monaco-editor/issues/1296 to track the regression on our side...
This might have improved after https://github.com/microsoft/vscode/pull/85129
IMHO, I don't think the current line number should be read at all when navigating the text. Perhaps there should be a keyboard bound command that announces the current position...
@sorosoro2 The diff editor is today exposed to screen readers as two separate editors, the left-hand-side (or original), which is read-only, and the right-hand-side (or modified), which, depending on whom...
> This is incredibly annoying, because the only way I've found to break the reload cycle is to reload the window, sit there waiting for it to pop up with...
I have recently pushed a change which might improve things in this area -- https://github.com/microsoft/vscode/commit/32d29d71262ce330097e1f9d826344912d6203ad Basically, if the vscode renderer would disconnect from the server before the laptop went to...