zerol
zerol
I can't help much here. You may want to examine the `shell-quote-argument` and `copilot-install-server` functions to find out where the extra `\` comes from.
 GitHub doesn't support `#######`. Could you use bold or plain text instead?
Here is another example: ```rust #[cfg(test)] mod tests { use serde::{Deserialize, Serialize}; use std::net::SocketAddr; #[derive(Debug, Serialize, Deserialize, Clone, Eq, PartialEq, Hash)] #[serde(untagged)] pub enum MaybeResolvedAddr { Resolved(SocketAddr), Unresolved(String), } #[test]...