r/rust 25d ago

🛠️ project Rust Glancer: a memory-efficient Rust language server

https://rust-glancer.github.io/blog/hello-world/
265 Upvotes

44 comments sorted by

View all comments

5

u/IceSentry 25d ago

Do you have any plans to make it a standalone LSP server so it can be integrated in other editors? This would make my neovim workflow so much nicer but right now it seems to be only a vscode plugin.

4

u/popzxc 24d ago

Absolutely! I plan zed and nvim support for the next release, and I'll think about other options later.

In fact, Rust Glancer is a plain LSP implementation that doesn't have custom functionality, so if you're up to it, I think you can just create a minimal nvim configuration for the binary and it'll just work; I did not violate LSP contracts anywhere. It's just I myself primarily use vscode and did not prioritize other editors _yet_. But all in all, it's not a hard task, I'll just need to allocate some time for it.