Alexandru Dima

Results 200 comments of Alexandru Dima

This was an intentional bugfix done via https://github.com/microsoft/vscode/pull/155970 . We initially added support for relative line numbers as this was a highly requested feature from folks coming over from vim,...

I see! Thank you for clarifying. I will roll us back to the previous behaviour as default and maybe introduce a setting for the new line counting or remove it...

might be related to https://github.com/microsoft/vscode/issues/152300

@janpio I would have not thought so myself, but file watching is apparently a very difficult problem. Could you please try using [vscode's built-in file watcher](https://github.com/microsoft/vscode/blob/64a6343dd06f39b33d6f382aa61e956d907dbb9b/src/vs/vscode.d.ts#L10606)? On Windows we are...

> However, we did use vscode's built-in file watcher at some point, but this lead to errors that forced us to switch to chokidar I'm sorry about that. If I...

Currently only the color can be changed in the [minimap gutter decoration rendering](https://github.com/microsoft/vscode/blob/2135a9d3c7a68bf5429f30d8caee8f25266ab12e/src/vs/editor/browser/viewParts/minimap/minimap.ts#L1609-L1614)

@daviddossett The following worked for me: ``` "workbench.colorCustomizations": { "editorGutter.deletedBackground": "#0000fb", "minimapGutter.deletedBackground": "#0000fb", "editorError.foreground": "#00ff11", "minimap.errorHighlight": "#00ff11", "editorOverviewRuler.errorForeground": "#00ff11" } ```

There is currently no way to disable suggestions entirely in the AMD distribution. The only possible way would be by using the ESM distribution of the editor and not including...

@swimmadude66 There's a community project at https://github.com/TypeFox/monaco-languageclient that attempts to do this, did you take a look there?