cleanup register_movement

This commit is contained in:
Simon Gardling 2022-05-11 15:45:55 -04:00
parent fa70c23b8f
commit 42be889c8a

View File

@ -85,7 +85,7 @@ impl<'a> AutoComplete<'a> {
self.apply_hint(hints[self.i]); self.apply_hint(hints[self.i]);
} }
Movement::None => {} _ => unreachable!(),
} }
} }
Hint::Single(hint) => { Hint::Single(hint) => {
@ -93,7 +93,7 @@ impl<'a> AutoComplete<'a> {
self.apply_hint(hint); self.apply_hint(hint);
} }
} }
Hint::None => {} _ => unreachable!(),
} }
} }