feat: add 'ctrl-a a' to jump to beginning of line (#1917)

This commit is contained in:
Helmut K. C. Tessarek 2024-04-03 03:23:52 -04:00 committed by GitHub
parent bb0ea6c516
commit 61daae27ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -295,6 +295,10 @@ impl State {
KeyCode::Char('d') => {
return InputAction::Delete(self.results_state.selected());
}
KeyCode::Char('a') => {
self.search.input.start();
return InputAction::Continue;
}
_ => {}
}
}