We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc8d008 commit e7beafcCopy full SHA for e7beafc
src/plumbing/progress.rs
@@ -46,7 +46,7 @@ impl Display for Usage {
46
impl Usage {
47
pub fn icon(&self) -> &'static str {
48
match self {
49
- Puzzled => "?",
+ Puzzled => "❓",
50
NotApplicable { .. } => "❌",
51
Planned { .. } => "🕒",
52
NotPlanned { .. } => "🤔",
@@ -546,11 +546,10 @@ pub fn show_progress() -> anyhow::Result<()> {
546
"{icon} {config: <50}: {usage}",
547
icon = usage.icon(),
548
config = if let Some(config) = config.strip_prefix("gitoxide.") {
549
- format!("{gitoxide}{config}", gitoxide = "gitoxide.".green())
+ format!("{gitoxide}{config}", gitoxide = "gitoxide.")
550
} else {
551
config.to_string()
552
}
553
- .bold(),
554
);
555
556
0 commit comments