minor: Nicer errors, std::io::Error provides a Display impl
This commit is contained in:
parent
a76ec9a64e
commit
38e932bd4c
1 changed files with 2 additions and 2 deletions
|
@ -1838,7 +1838,7 @@ mod cmd {
|
|||
let dir = args.first().context("target directory not provided")?;
|
||||
|
||||
if let Err(e) = std::env::set_current_dir(dir) {
|
||||
bail!("Couldn't change the current working directory: {:?}", e);
|
||||
bail!("Couldn't change the current working directory: {}", e);
|
||||
}
|
||||
|
||||
let cwd = std::env::current_dir().context("Couldn't get the new working directory")?;
|
||||
|
@ -3399,7 +3399,7 @@ fn yank_main_selection_to_clipboard_impl(
|
|||
.clipboard_provider
|
||||
.set_contents(value.into_owned(), clipboard_type)
|
||||
{
|
||||
bail!("Couldn't set system clipboard content: {:?}", e);
|
||||
bail!("Couldn't set system clipboard content: {}", e);
|
||||
}
|
||||
|
||||
editor.set_status("yanked main selection to system clipboard".to_owned());
|
||||
|
|
Loading…
Add table
Reference in a new issue