Add Ctrl-d as a way of exiting the TUI (#65)
This commit is contained in:
parent
220e2d05e3
commit
2e5f16a6a3
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue