mirror of
https://github.com/sharkdp/bat.git
synced 2025-02-22 04:48:48 +00:00
Improve error message
This commit is contained in:
parent
34619a2e89
commit
a6d9d1551f
@ -237,7 +237,10 @@ impl<'a> Printer for InteractivePrinter<'a> {
|
|||||||
InputFile::Ordinary(ofile) => {
|
InputFile::Ordinary(ofile) => {
|
||||||
format!("file '{}'", &ofile.provided_path().to_string_lossy())
|
format!("file '{}'", &ofile.provided_path().to_string_lossy())
|
||||||
}
|
}
|
||||||
InputFile::StdIn(Some(name)) => name.to_string_lossy().into_owned(),
|
InputFile::StdIn(Some(name)) => format!(
|
||||||
|
"STDIN (with name '{}')",
|
||||||
|
name.to_string_lossy().into_owned()
|
||||||
|
),
|
||||||
InputFile::StdIn(None) => "STDIN".to_owned(),
|
InputFile::StdIn(None) => "STDIN".to_owned(),
|
||||||
InputFile::ThemePreviewFile => "".to_owned(),
|
InputFile::ThemePreviewFile => "".to_owned(),
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user