brush-shell 0.4.0

Rust-implemented shell focused on POSIX and bash compatibility
Documentation
#[derive(Debug, Default, Clone)]
pub(crate) struct Formatter {
    pub use_color: bool,
}

impl brush_core::extensions::ErrorFormatter for Formatter {
    fn format_error(
        &self,
        err: &brush_core::error::Error,
        _shell: &brush_core::Shell<impl brush_core::ShellExtensions>,
    ) -> String {
        let prefix = if self.use_color {
            color_print::cstr!("<red>error:</red> ")
        } else {
            "error: "
        };

        std::format!("{prefix}{err:#}\n")
    }
}