removed nix artifacts

This commit is contained in:
2025-04-19 12:45:02 -04:00
parent 80b6453597
commit b6be68b235
6 changed files with 2 additions and 132 deletions

View File

@@ -248,8 +248,7 @@ impl Display for ShErr {
"{padding}{arrow} [{line_fmt};{col_fmt}]",
)?;
let mut bar = format!("{padding}|");
bar = bar.styled(Style::Cyan | Style::Bold);
let bar = format!("{padding}|").styled(Style::Cyan | Style::Bold);
writeln!(f,"{bar}")?;
let mut first_ind_ln = true;

View File

@@ -30,6 +30,7 @@ pub const OPENERS: [&'static str;6] = [
"case"
];
/// Span::new(10..20)
#[derive(Clone,PartialEq,Default,Debug)]
pub struct Span {
range: Range<usize>,