Raoul Wols

Results 283 comments of Raoul Wols

this could be https://github.com/sublimelsp/LSP/issues/1632 or https://github.com/sublimelsp/LSP/issues/1456, the latter I'm hoping to fix with https://github.com/sublimelsp/sublime_asyncio, the former must be fixed by SublimeHQ.

We can keep this `on_post_start` compatible with other plugins in the following way. Currently it's documented to return `None`. But we can let it return an `Optional[bytes]` which would be...

But you can't really send anything else after the `initialize` request because at that point the server and client are in a state machine that awaits requests and handles responses....

> We should think if something like that fits with other methods (tcp, node-ipc in the future). I don't understand this comment... Isn't the Transport abstraction the point of not...

In-line include files are usually not compible as standalone compilation units. The design of clangd requires this, so it won’t work well with those type of files.

What is the error you're seeing?

What kind of problems does a custom scheme solve?

But do you need a custom scheme for this? Why can’t you use the over-arching script and/or environment to select the appropriate program? The subl executable already supports file:line:col syntax...

Instead of a daemon process, wouldn't it be simpler to cache index results on disk? I know clangd does this.