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 {
181181 MoreInfoCommit :: Down => ( "⬇️" , "downgrade" , "Down" ) ,
182182 MoreInfoCommit :: Up => ( "⬆️" , "upgrade" , "Up" ) ,
183183 MoreInfoCommit :: CI => ( "👷" , "" , "CI related" ) ,
184- MoreInfoCommit :: Refactor => ( "♻️" , "" , "Refactor related" ) ,
184+ MoreInfoCommit :: Refactor => {
185+ ( "♻️" , "" , "Refactor related" )
186+ }
185187 MoreInfoCommit :: TrackCode => {
186188 ( "📈" , "track" , "Tracking code" )
187189 }
Original file line number Diff line number Diff line change @@ -686,7 +686,8 @@ impl Status {
686686 strings:: commands:: select_staging ( & self . key_config ) ,
687687 !focus_on_diff,
688688 ( self . visible
689- && !focus_on_diff && self . focus == Focus :: WorkDir )
689+ && !focus_on_diff
690+ && self . focus == Focus :: WorkDir )
690691 || force_all,
691692 )
692693 . order ( strings:: order:: NAV ) ,
@@ -696,7 +697,8 @@ impl Status {
696697 strings:: commands:: select_unstaged ( & self . key_config ) ,
697698 !focus_on_diff,
698699 ( self . visible
699- && !focus_on_diff && self . focus == Focus :: Stage )
700+ && !focus_on_diff
701+ && self . focus == Focus :: Stage )
700702 || force_all,
701703 )
702704 . order ( strings:: order:: NAV ) ,
You can’t perform that action at this time.
0 commit comments