mirror of
https://github.com/nushell/nushell
synced 2024-12-27 05:23:11 +00:00
Merge pull request #589 from jankoprowski/eof
Stop printing CTRL-D on EOF
This commit is contained in:
commit
c6c4d4ddb1
1 changed files with 1 additions and 4 deletions
|
@ -451,10 +451,7 @@ async fn process_line(readline: Result<String, ReadlineError>, ctx: &mut Context
|
||||||
LineResult::Success(line.clone())
|
LineResult::Success(line.clone())
|
||||||
}
|
}
|
||||||
Err(ReadlineError::Interrupted) => LineResult::CtrlC,
|
Err(ReadlineError::Interrupted) => LineResult::CtrlC,
|
||||||
Err(ReadlineError::Eof) => {
|
Err(ReadlineError::Eof) => LineResult::Break,
|
||||||
println!("CTRL-D");
|
|
||||||
LineResult::Break
|
|
||||||
}
|
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
println!("Error: {:?}", err);
|
println!("Error: {:?}", err);
|
||||||
LineResult::Break
|
LineResult::Break
|
||||||
|
|
Loading…
Reference in a new issue