mirror of
https://github.com/danbulant/nushell
synced 2026-05-22 05:49:17 +00:00
Merge pull request #31 from jntrnr/make_prompt_more_resilient
Make reedline prompt more resilient
This commit is contained in:
commit
ed6abced5b
1 changed files with 4 additions and 1 deletions
|
|
@ -131,7 +131,10 @@ fn main() -> std::io::Result<()> {
|
|||
line_editor.clear_screen()?;
|
||||
}
|
||||
Err(err) => {
|
||||
println!("Error: {:?}", err);
|
||||
let message = err.to_string();
|
||||
if !message.contains("duration") {
|
||||
println!("Error: {:?}", err);
|
||||
}
|
||||
}
|
||||
}
|
||||
current_line += 1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue