mirror of
https://github.com/atuinsh/atuin.git
synced 2025-06-21 18:32:43 +02: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') => {
|
KeyCode::Char('d') => {
|
||||||
return InputAction::Delete(self.results_state.selected());
|
return InputAction::Delete(self.results_state.selected());
|
||||||
}
|
}
|
||||||
|
KeyCode::Char('a') => {
|
||||||
|
self.search.input.start();
|
||||||
|
return InputAction::Continue;
|
||||||
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user