Piotr Osiewicz

Results 106 comments of Piotr Osiewicz

This is dependent on language server capabilities; I've recently filled a PR for this: https://github.com/zed-industries/zed/pull/9634 What language/language server are you using?

Thank you! I've looked at source code for both of these language servers: PyRight does not support "insert edits", so we'd have to handle that on our side. PyRight's source...

Hey, that's pretty odd. I use `overrideCommand` myself and it does work for me; My config for RA ``` "lsp": { "rust-analyzer": { "initialization_options": { "check": { "allTargets": false, "overrideCommand":...

Also, can you try to run the binary from command line? Something like: `/Applications/Zed.app/Contents/MacOS/zed` or `/Applications/Zed\ Preview.app/Contents/MacOS/zed` (depending on whether you're on Stable on Preview) Do you see any logs...

Yeah, I can repro this; the problem is related to multiple worktrees (you have `backend` and `frontend` worktrees). I couldn't repro it on a single-worktree workspace either. Edit: Actually, this...

Fix for it will be released with next week's Preview. We could squeeze it into this weeks Preview in theory, but I'd rather have it sit on nightly for a...

This is gonna land in next Preview on Wednesday, 22.05. Thanks for getting this across the line @farayolaj :)

Hey, thanks for your work on `emmet-language-server`! :) > Aside from that, I've still added support for JavaScript files since is important to have emmet completions in JSX files, but...

Hey, it seems to almost work fine to me; the only caveat is that it only works inside of another element, so e.g. `return (div>li*2` won't give you any completions;...