You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a non-searching mode can override non-searching mode.
It’s likely just a mistake or typo :
if !matches!(*self, Mode::Search(_));
it should be:
if !matches!(new, Mode::Search(_))
0 commit comments