jwortmann

Results 131 comments of jwortmann

Your diff doesn't work because the setting value is set in the LSP.sublime-settings file, but later you try to read it from the settings of the current view. It should...

Well, I still find it weird to use just the arbitrary and sometimes random ordering from the server, rather than sorting the diagnostics. Especially for the "Goto diagnostic" in the...

I agree, and I already had in mind to add another argument named "preferred" or "only_preferred" for the `lsp_code_actions` command. Then an "Auto Fix" key binding could set that to...

I would suggest `>` surrounded by spaces for the separator symbol, i.e. `ParentA > ParentB > ParentC`. That's often used in e.g. website navigation to display a hierarchy.

The quick panel could be replaced with a ListInputHandler, which is more compact. Only the labels for the items are in the list in that case, and additional information can...

Your LSP-julia package is most likely outdated, because I already made one with lots of features at https://github.com/jwortmann/LSP-julia 😉 Currently it uses the old LSP API. I'm planning to update...

> The HTML content can only be shown for the currently selected item though That's correct, but I would see this as an advantage due to the saved space, rather...

It would be good to know the LSP payload from the server for this hover request, so we can see how the Dart server handles images. I can say that...

Yes, according to the docs, ST doesn't support http(s) urls in `` tags, only `file://`, `res://` and `data:`. If we want to support images from http(s) URLs, either we need...

Looks like there is already an issue for this in the ST issue tracker: https://github.com/sublimehq/sublime_text/issues/1378 But since it's already open for more than 4 years, it seems to be low...