Michael Davis
Michael Davis
That is signature-help (https://github.com/helix-editor/helix/pull/1755) rather than hover. It should possible to have signature-help open at the same time as completion. For the overlapping bug, see https://github.com/helix-editor/helix/issues/3821. For dismissing signature help,...
I can reproduce this: that the `true` value for `json.validate.enable` needs to be manually set. I'm not sure why it's necessary to set this manually though. We send the config...
I'm not sure what `json.format.enable` actually does - setting it doesn't seem to have an effect. `provideFormatter` needs to be set to `true` though: that sets `documentFormattingProvider` to `true` in...
> But it seems to be `false` if send `workspace/didChangeConfiguration` notification with payload that omitted `json.validate.enable`. Ah I see, I can confirm this. If I comment out this block then...
Yeah I think you're right about the names. Ideally we should avoid breaking changes but I think progress messages would be better as `display-progress-messages` and showMessage messages as `display-messages`.
Ah I think we could use the same syntax for that. I think that binary chunks are not touched by the serializer/deserializer though - just sent as-is as WebSocket binary...
Let's call this closed with the `serializer` configuration and V2 JSON default serializer added in #56 (v1.1.0). The V1 serializer is quite old so maybe we can get away with...
This will be closed by https://github.com/helix-editor/helix/pull/6592
That looks like a bug in the docs rather than in the way we merge config options. Ideally this would be solved by scriptable configs - you could decide whether...
https://github.com/helix-editor/helix/pull/4123 removed the code that tried to automatically detect the range for increment/decrement. With that change, you should now select the range you want to increment/decrement. Selections for numbers could...