mirror of
https://github.com/atuinsh/atuin.git
synced 2025-03-14 23:19:10 +01:00
feat: add 'ctrl-a a' to jump to beginning of line (#1917)
This commit is contained in:
parent
bb0ea6c516
commit
61daae27ab
@ -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;
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user