wezterm/do-not-send-eof-when-closing-application.patch
Soc Virnyl Estela 6d383b58da - Add do-not-send-eof-when-closing-application.patch
* resolves issue when closing app but also sends an EOF
  to other multiplexers e.g. tmux, screen, zellij

OBS-URL: https://build.opensuse.org/package/show/X11:terminals/wezterm?expand=0&rev=104
2023-11-18 21:58:16 +00:00

18 lines
578 B
Diff

diff --git a/pty/src/unix.rs b/pty/src/unix.rs
index cbe0f76..92bf82b 100644
--- a/pty/src/unix.rs
+++ b/pty/src/unix.rs
@@ -396,9 +396,9 @@ impl Drop for UnixMasterWriter {
// EOF is only interpreted after a newline, so if it is set,
// we send a newline followed by EOF.
let eot = t.c_cc[libc::VEOF];
- if eot != 0 {
- let _ = self.fd.0.write_all(&[b'\n', eot]);
- }
+ // if eot != 0 {
+ // let _ = self.fd.0.write_all(&[b'\n', eot]);
+ // }
}
}
}