Raoul Wols

Results 283 comments of Raoul Wols

Not only that, but Sublime Text already allocates a ton of file descriptors for its file watchers. So we would be halving the available file descriptors if we were to...

IMO I only see two options: 1. We get an API. I learned some people experimented with this, but it'd send a large amount of data over the IPC layer...

I second @randy3k's wish. LSP should handle settings more sublime-like. Though I can see how it would require major refactors. Let's keep this in the backlog :)

Thanks for the suggestion. If the LSP hover popup is disabled, then the popup from the Default package will be shown instead. The net result is that you'll still see...

To avoid ambiguities, language servers should use `textEdit` instead of the deprecated `insertText`.

There are major problems for insertText with respect to determining what the editor considers the prefix string to be. If you type this: foo.bar.b and a server returns an insertText...

I have one more idea that would probably make it work for this client. I see you have the `-` prefixed in the `label` property of the completion items. And...

What does Sublime Text itself think the encoding is? The ST4 variant of LSP uses incremental text sync to save RPC bandwidth. The ST3 version sends the entire buffer over...

There's multiple "real" ways to fix encoding issues: 1) ST should support your missing encodings out of the box. 2) ST can expose an EncodingProvider in the python API and...

I did some research. At the end of the day ConvertToUTF8 has: - 2 calls to view.replace - 1 call to view.set_encoding in on_pre_save - 1 call to view.insert, which...