jwortmann

Results 216 comments of jwortmann

> But I think a better way is to push and then pop in function-call-keyword-arguments-only when matching (?=\)). (This may be also true for many of the existing logic. At...

I don't really know how Package Control works, but I can see two unmerged pull requests https://github.com/wbond/package_control_channel/pull/8713 and https://github.com/wbond/packagecontrol.io/pull/157 for the channel and for the website, whose descriptions indicate that...

> I believe the purpose is to clearly define what is a public interface and what is internal. Especially for the plugin packages accessing those. I'm not sure how well...

I've checked it and it turns out that both `SessionViewProtocol` and `SessionBufferProtocol` are only used in type annotations. Therefore it should be possible to avoid circular imports by using ```python...

> Q3 Although this is a big change, I don't know if I should see this as a breaking change or not :) how do you see it? I would...

Yeah, I agree now that something like `ignore_non_project_diagnostics` is probably better.

Just because it wasn't pointed out in the previous discussion yet; I believe this happens because of this line https://github.com/sublimelsp/LSP/blob/36b0bc9a8b772569f06654ab4cae58e6af7f3cf8/plugin/documents.py#L577 which is called after each buffer modification if the language...

I would even add another context for "popup_visible", because then it will only open the docs popup after you manually clicked the link with the mouse or with F12 and...

I assume that this should be handled by the client, so that the server won't get any requests or file notifications for the ignored files. A related LSP issue: https://github.com/sublimelsp/LSP/issues/2282

It seems like `.copilotignore` files are now supported by 3rd-party extension in VSCode (https://github.com/mattickx/copilotignore-vscode) and Vim. I'd like to leave the following example code snippet here, which should make it...