mirror of https://github.com/zkat/miette.git
Merge 2d303d8507 into e853bbf9bc
This commit is contained in:
commit
1f3fff140f
|
|
@ -21,6 +21,14 @@ This printer can be customized by using [`new_themed()`](GraphicalReportHandler:
|
||||||
|
|
||||||
See [`set_hook()`](crate::set_hook) for more details on customizing your global
|
See [`set_hook()`](crate::set_hook) for more details on customizing your global
|
||||||
printer.
|
printer.
|
||||||
|
|
||||||
|
The width with which reports get printed depends on the configured width value, but can also get overridden per call
|
||||||
|
using the [Rust fmt precision](https://doc.rust-lang.org/std/fmt/#precision) specifier.
|
||||||
|
|
||||||
|
```ignore
|
||||||
|
let diagnostic = // ...
|
||||||
|
println!("{diagnostic:.300?}"); // Prints with 300 width instead of the configured value
|
||||||
|
```
|
||||||
*/
|
*/
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct GraphicalReportHandler {
|
pub struct GraphicalReportHandler {
|
||||||
|
|
@ -1366,7 +1374,13 @@ impl ReportHandler for GraphicalReportHandler {
|
||||||
return fmt::Debug::fmt(diagnostic, f);
|
return fmt::Debug::fmt(diagnostic, f);
|
||||||
}
|
}
|
||||||
|
|
||||||
self.render_report(f, diagnostic)
|
if let Some(width) = f.precision() {
|
||||||
|
let mut handler = self.clone();
|
||||||
|
handler.termwidth = width;
|
||||||
|
handler.render_report(f, diagnostic)
|
||||||
|
} else {
|
||||||
|
self.render_report(f, diagnostic)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue