Alexandru Dima

Results 200 comments of Alexandru Dima

@isidorn I'm sorry, I don't really know. I can speculate that perhaps the textarea is positioned at the cursor location, but the text inside the textarea overflows the 1px by...

@isidorn @meganrogge The `.scrollTop` inside the `` is currently [only set on mac](https://github.com/microsoft/vscode/blob/604283bdcf9527e9825d4677aae5217f944be143/src/vs/editor/browser/controller/textAreaHandler.ts#L785-L802). If we would set it on all OSes I think that would help with the need to...

The reason is that the scrollbar is transparent. Even characters are visible through the scrollbar.

The only thing that I can think of is that `this.dispose()` throws which prevents execution from reaching `process.exit(0)`. The registered disposables are: - `FileService` - `DiskFileSystemProvider` - `appInsightsAppender.flush()` - `ErrorTelemetry`...

It looks to me that perhaps `_waitThenShutdown` should be called from the `initialize` method as well? Otherwise a server without any connections will never shut down by itself, as you...

Strictly from the editor's point of view, making `copy` or `paste` async (in order to allow for async participants) might not be feasible. In the web, we get `copy`/`paste` browser...

@DanTup In the first [two paragraphs](https://github.com/microsoft/vscode/issues/30066#issuecomment-772440714) I attempt to reason why copy itself cannot be made async. Maybe we could add an `onDidCopy` that would execute immediately after the `copy`...

@greazer Are you still seeing this behavior? I can no longer reproduce.

> I'm not sure how to verify- is there a way to run the latest code in the monaco playground? Unfortunately not yet, @hediet is working on a playground that...

Since 0.34.1, `monaco.editor.addKeybindingRule(s)` can be used to tweak default keybindings.