File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 1
1
use std:: fmt:: { Display , Formatter } ;
2
2
3
- use crosstermion:: crossterm:: style:: Stylize ;
4
3
use owo_colors:: OwoColorize ;
5
4
6
5
#[ derive( Clone ) ]
@@ -46,7 +45,7 @@ impl Display for Usage {
46
45
impl Usage {
47
46
pub fn icon ( & self ) -> & ' static str {
48
47
match self {
49
- Puzzled => "? " ,
48
+ Puzzled => "❓ " ,
50
49
NotApplicable { .. } => "❌" ,
51
50
Planned { .. } => "🕒" ,
52
51
NotPlanned { .. } => "🤔" ,
@@ -546,11 +545,10 @@ pub fn show_progress() -> anyhow::Result<()> {
546
545
"{icon} {config: <50}: {usage}" ,
547
546
icon = usage. icon( ) ,
548
547
config = if let Some ( config) = config. strip_prefix( "gitoxide." ) {
549
- format!( "{gitoxide}{config}" , gitoxide = "gitoxide." . green ( ) )
548
+ format!( "{gitoxide}{config}" , gitoxide = "gitoxide." )
550
549
} else {
551
550
config. to_string( )
552
551
}
553
- . bold( ) ,
554
552
) ;
555
553
}
556
554
You can’t perform that action at this time.
0 commit comments