Restructure remote client crate, consolidate SSH logic (#36967)

This is a pure refactor that consolidates all SSH remoting logic such
that it should be straightforward to add another transport to the
remoting system.

Release Notes:

- N/A

---------

Co-authored-by: Mikayla Maki <mikayla.c.maki@gmail.com>
This commit is contained in:
Max Brunsfeld
2025-08-27 00:15:39 +00:00
committed by GitHub
co-authored by Mikayla Maki
parent d713390366
commit 1eae76e856
39 changed files with 3330 additions and 3411 deletions
+3 -1
View File
@@ -1924,7 +1924,9 @@ impl ShellExec {
let Some(range) = input_range else { return };
let mut process = project.read(cx).exec_in_shell(command, cx);
let Some(mut process) = project.read(cx).exec_in_shell(command, cx).log_err() else {
return;
};
process.stdout(Stdio::piped());
process.stderr(Stdio::piped());