Raoul Wols
Raoul Wols
```python class Foo: def __init__(self): self.x = 1 self.y = 2 f = Foo() f.| ``` Currently, this will report the members `x` and `y` as variables, but they should...
From my experience using this LS for a while: 1. Just remove the plaintext completions for functions/methods, we have snippets. 2. The snippets for functions/methods are actually too verbose. There...
I get this exception in the console: ``` Traceback (most recent call last): File "/Applications/Sublime Text.app/Contents/MacOS/sublime_plugin.py", line 389, in run_callback expr() File "/Applications/Sublime Text.app/Contents/MacOS/sublime_plugin.py", line 458, in run_callback('on_pre_save', callback, lambda:...
**Is your feature request related to a problem? Please describe.** I would like to see inlay hints if possible. **Describe the solution you'd like** Implement https://github.com/microsoft/vscode-languageserver-node/pull/772 **Additional context** MetaLS has...
**Is your feature request related to a problem? Please describe.** Currently we bin all code actions into "Code Actions", but servers like - jdtls - OmniSharp have a clear distinction...
**Is your feature request related to a problem? Please describe.** Set triggerKind in CodeActionContext to communicate better to language servers what they should return. **Additional context** https://github.com/microsoft/language-server-protocol/commit/27c15c694a80152f918b2b60dbf7ff09f1bb909e
**Is your feature request related to a problem? Please describe.** If there's a code action that is the "most obvious fix", then LSP should have a special keybinding, or maybe...
https://github.com/microsoft/language-server-protocol/commit/7108dd15b67212b219beb715384c9eb8cea0d0c3
**Is your feature request related to a problem? Please describe.** When there is a request in flight for a particular view, say textDocument/documentSymbol, then the request is not cancelled when...
Before we can use asyncio in all of its glory, we need to switch to the Python 3.8 runtime. To do that, we have to wait for a few things:...