jwortmann
jwortmann
There is also `uri_to_filename` function from the API marked as deprecated for a long time. Maybe it can be removed? (probably better to check LSP-* packages first if it is...
All I can say is that it works on my side and I don't get those missing reference warnings. I do have set `"julia.lint.missingrefs": "symbols"`. But your configuration seems to...
The missing references and this message are certainly connceted. But I'm not sure what exactly the message means. A quick search on GitHub reveals that it is probably created by...
I tried with your Manifest.toml but still can't reproduce the issue. Whether or not you have added LanguageServer to your global environment shouldn't matter, because LSP-julia creates its own environment...
> I'm using Sublime Text 4 with the LSP and LSP-julia plugins. Nice, that indicates that the installation logic for the language server that I recently added, seems to work...
@prassee Your example with Statistics works for me, i.e. I don't get a "Missing reference" warning even with `"julia.lint.missingrefs": "all"` in the settings. And things like hover info for the...
Hi, the docs link you posted is outdated, the current version for LSP on Sublime Text 4 is https://lsp.sublimetext.io/. But with LSP-julia installed, you don't need to add the LanguageServer/SymbolServer...
Hm, could you look if you have a folder under *$Data/Package Storage/LSP-julia*? I'm not sure where the Sublime Text Data path ($Data) exactly is under Linux, but you should find...
I think the "julia exited with status code 1" pop-up is created by LSP trying to start the server, even though it hasn't been installed correctly. The folder looks exactly...
The "ready" file should not have been created if the returncode was 1: https://github.com/sublimelsp/LSP-julia/blob/91fc2f81c57b63431b184bc2d56ceeb6340de703/plugin.py#L157-L162 --- > On a potentially related note, I was expecting I'd see documentation on hover for...