Replies: 4 comments
-
|
Having had a look at the rustaceanvim help ( While undocumented, rustaceanvim appears to also look for an init_options in the same place (as per https://github.com/mrcjkb/rustaceanvim/blob/29f42cc149f915d771c550b6dfe7c788d856cf04/lua/rustaceanvim/lsp/init.lua#L112 ). Once you set those two things, it hopefully should work. |
Beta Was this translation helpful? Give feedback.
-
Another option for this approach would be to write a shell script instead of symlinking. Ignore the passed options and add Something like #!/bin/bash
exec /path/to/ra-multiplex client --server-path /path/to/real/rust-analyzerThen make sure that this shell script appears in |
Beta Was this translation helpful? Give feedback.
-
|
With this configuration it works: |
Beta Was this translation helpful? Give feedback.
-
|
Since rustaceanvim v5.20 there is auto-discovery for |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
How do I integrate this with rustaceanvim? It has many more features that I would love to have that builds on top of rust analyzer, but I cannot figure out an interface between ra-multiplex and rustaceanvim.
I have tried
ln -s ra-multiplex rust-analyzerto see if it can drop-in replace at least the client side, but it doesn't work due to differing APIs. Specifically, it complained that it could not use--log-fileflag.Any help on this would be greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions