Replies: 4 comments 1 reply
-
Theoretically yes, you can port-forward the TCP socket through SSH for example. But I haven't tried it and I expect trouble around file synchronization between the language server and the editor. If you want to try it you probably also want the filesystem to be shared between your computer and the remote server and you'll have to match the absolute paths of the project. Simpler option is, if you use a terminal editor, is to just run the whole editor remotely through SSH. |
Beta Was this translation helpful? Give feedback.
-
@eval-exec You can indeed forward the TCP socket through SSH with the You can also set SSH connections to be reused for faster rsync's:
With this, the sync's were low latency enough for rust-analyzer to not complain. I tried virtual file systems (sshfs, catfs) previously but they were too slow for just listing files in helix. |
Beta Was this translation helpful? Give feedback.
-
Thank you, it helped me a lot. |
Beta Was this translation helpful? Give feedback.
-
I want to create a Docker container to run on a remote server. In the Docker container, I need the container's absolute paths to mirror the paths on my local machine. For example: When I launch @pr2502, if you’re interested, I’d like to submit a Dockerfile PR for |
Beta Was this translation helpful? Give feedback.
-
Hello, I noticed that rust-analyzer is using too much CPU on my local laptop, which has relatively low specs. My remote server has much better hardware. Is it possible to run the ra-multiplex server on the remote server and have the ra-multiplex client run on my local laptop? Thank you!
Beta Was this translation helpful? Give feedback.
All reactions