Add Ctrl-d as a way of exiting the TUI ()

This commit is contained in:
Jamie Quigley 2021-05-08 15:04:33 +01:00 committed by GitHub
parent 220e2d05e3
commit 2e5f16a6a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -153,7 +153,7 @@ async fn key_handler(
app: &mut State,
) -> Option<String> {
match input {
Key::Esc | Key::Ctrl('c') => return Some(String::from("")),
Key::Esc | Key::Ctrl('c') | Key::Ctrl('d') => return Some(String::from("")),
Key::Char('\n') => {
let i = app.results_state.selected().unwrap_or(0);