File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,9 @@ impl MoreInfoCommit {
181
181
MoreInfoCommit :: Down => ( "⬇️" , "downgrade" , "Down" ) ,
182
182
MoreInfoCommit :: Up => ( "⬆️" , "upgrade" , "Up" ) ,
183
183
MoreInfoCommit :: CI => ( "👷" , "" , "CI related" ) ,
184
- MoreInfoCommit :: Refactor => ( "♻️" , "" , "Refactor related" ) ,
184
+ MoreInfoCommit :: Refactor => {
185
+ ( "♻️" , "" , "Refactor related" )
186
+ }
185
187
MoreInfoCommit :: TrackCode => {
186
188
( "📈" , "track" , "Tracking code" )
187
189
}
Original file line number Diff line number Diff line change @@ -686,7 +686,8 @@ impl Status {
686
686
strings:: commands:: select_staging ( & self . key_config ) ,
687
687
!focus_on_diff,
688
688
( self . visible
689
- && !focus_on_diff && self . focus == Focus :: WorkDir )
689
+ && !focus_on_diff
690
+ && self . focus == Focus :: WorkDir )
690
691
|| force_all,
691
692
)
692
693
. order ( strings:: order:: NAV ) ,
@@ -696,7 +697,8 @@ impl Status {
696
697
strings:: commands:: select_unstaged ( & self . key_config ) ,
697
698
!focus_on_diff,
698
699
( self . visible
699
- && !focus_on_diff && self . focus == Focus :: Stage )
700
+ && !focus_on_diff
701
+ && self . focus == Focus :: Stage )
700
702
|| force_all,
701
703
)
702
704
. order ( strings:: order:: NAV ) ,
You can’t perform that action at this time.
0 commit comments