jwortmann

Results 216 comments of jwortmann

This seems to depend on the output format, though. If I save a figure in the SVG format, the specified dimensions are applied directly, both in the `width`/`height` attributes, as...

See https://github.com/sublimelsp/LSP/issues/2551#issuecomment-2467382633 Here it looks like the config would be something like ```jsonc { "clients": { "UnoCSS": { "enabled": true, "command": ["unocss-language-server", "--stdio"], "selector": "source.css" }, } } ``` A...

I'm not sure whether `view.settings().get("repl")` would be a good approach; LSP currently registers new (non-file) views in `on_activated_async`. Dependent on how/when exactly SublimeREPL writes this setting, this approach might be...

I see. It works after running `resolve` for the environment in Julia 1.11, but it seems that StyledStrings has Julia 1.11 as a requirement https://github.com/JuliaLang/StyledStrings.jl/blob/729f56cb7c7064687a19ed02990a532606d83e4c/Project.toml#L7, so I think that it...

I think https://github.com/sublimelsp/LSP-julia/commit/e3b3ed62dd6377e82b6f9b75efda6c93a5a57c43 should fix it for now. I'll make a new release and see how it goes :innocent:

To be fair, I think this has nothing really to do with VSCode interoperability, but the current design used here is just flawed. The server responds with a list of...

> It sounds like we need a way to apply multiple code actions to a single document version. > > Does anyone have a plan yet for how this might...

Could you describe the use case for this; there isn't any linked issue or explanation in the opening comment, and I don't have any intuition just from the config description...

Thanks for the explanation. I see now that the `"path_maps"` config already existed in the code, it was just not documented (unfinished implementation?). Then it should also be added into...

I've tried to fix it via `SessionView.initialize_region_keys`, but it does not work; apparently the `find` region key (https://forum.sublimetext.com/t/what-is-the-find-results-highlight-key/69032/4) is automatically initialized by ST as soon as a new view is...