predragnikolic

Results 197 comments of predragnikolic

> do you prefer explicit config option? +1 for explicit config option My first suggestion for the client config option name would be: ``` // values: "RPC", "TCP" , "IPC"...

Just a note of what needs to be done. Step 1 If the server requires the '--node-ipc' argument, in LSP-eslint we need to override the get_binary_arguments method: ```py class NpmClientHandler(GenericClientHandler):...

I am also seeing errors, I've time to look at this now: Errors from ST console ``` Exception AttributeError: "'ProcessTransport' object has no attribute '_closed'" in ignored Error handling request...

If @alecmev don't mind I would push the change based on Rafal comment? :) If you mind, feel free to revert the last commit.

As much as I would like to get this merged. I would like to ask, It seems like python 3.8 will enable to solve this issue, https://github.com/sublimelsp/LSP/pull/2015#issuecomment-1213980226 do you think...

Here is the server payload: ``` :: Vec::with_capacity(n), will all produce a Vec with exactly the requested capacity. If len == capacity, (as is the case for the vec macro),...

I am looking at the image for the expect behavior and IMO displaying that much info in the autocomplete panel is distracting. For me the LSP signature popup is used...

This was addressed with https://github.com/sublimelsp/LSP/pull/2010 NOTE: there is still [something](https://github.com/sublimelsp/LSP/pull/2010#issuecomment-1205473391) that needs to be addressed on the server side

I used this for 2 days. Here are my conclusions so far. This works as expected, when setting `"show_diagnostics_inline": "at-cursor"`, the diagnostics is shown in the annotation: ![output](https://user-images.githubusercontent.com/22029477/179836982-1322a0c0-17ff-4e12-8e6b-491dd9513603.gif) In my...

I encountered a similar issue when implementing inlay hints, Potentially related, for more info see: https://github.com/sublimelsp/LSP-typescript/pull/91#discussion_r725840014 (High chance that it is not related, i just saw the `self._update_stored_region_async()` and I...