File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,8 @@ pub fn filter_commit_by_search(
214214
215215 Ok ( msg_summary_match
216216 || msg_body_match
217- || file_match || authors_match)
217+ || file_match
218+ || authors_match)
218219 } ,
219220 ) )
220221}
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