diff options
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 17d908a8..f1cc5966 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -4559,7 +4559,7 @@ fn shell_impl( .stdout(Stdio::piped()) .stderr(Stdio::piped()); - if input.is_some() { + if input.is_some() || cfg!(windows) { process.stdin(Stdio::piped()); } |