zerol

Results 43 comments of 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.

![image](https://github.com/copilot-emacs/copilot.el/assets/20219056/962081df-7784-4a39-8c6a-a469f9ce2427) 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]...