Loïc Mangeonjean

Results 53 comments of Loïc Mangeonjean

Hello > Is this project used in production anywhere? It is at least used in production on http://www.codingame.com > What are typefox's uses for this project? I saw that in...

You seem to use a VERY old version of the library

Then you are using the last version but you use it as it's an old version, where does that code come from? refer to the provided examples

`MonacoServices.install` doesn't take the editor as parameter, so no, the code doesn't come from there Btw, you have very weird typescript error in d.ts files, are you using a old...

typescript 3.9 is more than 2 years old

> import type * as monaco from 'monaco-editor/esm/vs/editor/editor.api'; cause error in typescript project with monaco-editor-core package only. That's weird because this code shouldn't be in the output javascript > Also...

What do you mean by `reinstall`? There is a `stop` method on the `LanguageClient` If you are talking about the services, `MonacoServices.install` returns a disposable

`.stop()` is the more graceful way to shutdown the client. The client includes a close/error management that will try to reconnect if an error occurs, depending on the `errorHandler` in...

The rootUri is only used to generate a default workspaceFolder if none is provided Btw the api will probably slightly change in a near future

> but where is this default workspaceFolder used? In the lsp `initialize` request > for exe so i would do things like pass relative path in uri here when calling...