Johannes Altmanninger

Results 734 comments of Johannes Altmanninger

> I think something similar is already possible with the region highlighter. actually no, because region highlighters are matched against every line Something like a `range-ref` highlighter sounds like a...

looks like there is some progress in `jdtls`, there is a PR that makes it use the generic `workspace.applyEdit` for some code actions, see https://github.com/eclipse-jdtls/eclipse.jdt.ls/pull/2962

looks like someone implemented the proxy language server, see https://github.com/messense/multi-lsp-proxy haven't tried it yet

> There is a noticeable lag when using https://github.com/kak-lsp/kak-lsp/pull/545 on a project with a few hundred crate dependencies just to show the progress bar when rust-analyzer is sending updates very...

implemented as `lsp-goto-document-symbol`, shortcut `s` (same as in Helix)

fixed by fb972fcd (Use UTF-16 code unit offsets instead of code point offsets, as per LSP, 2022-09-03)

> require an external command (cat foo 2>/dev/null | string match). That sounds like a good solution, it's simple and obvious. What's wrong with the external command? I haven't formed...

ok. I'm more likely to use `cat` in scripts but this seems fine. For race conditions I don't think it's a real fix, only a workaround that prevents some specific...