aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/commands.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r--helix-term/src/commands.rs14
1 files changed, 9 insertions, 5 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index cd79cfb8..32f28004 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -4552,14 +4552,18 @@ fn shell_impl(
use std::process::{Command, Stdio};
ensure!(!shell.is_empty(), "No shell set");
- let mut process = match Command::new(&shell[0])
+ let mut process = Command::new(&shell[0]);
+ process
.args(&shell[1..])
.arg(cmd)
- .stdin(Stdio::piped())
.stdout(Stdio::piped())
- .stderr(Stdio::piped())
- .spawn()
- {
+ .stderr(Stdio::piped());
+
+ if input.is_some() {
+ process.stdin(Stdio::piped());
+ }
+
+ let mut process = match process.spawn() {
Ok(process) => process,
Err(e) => {
log::error!("Failed to start shell: {}", e);