summaryrefslogtreecommitdiffstats
path: root/src/command/search.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/search.rs')
-rw-r--r--src/command/search.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/search.rs b/src/command/search.rs
index 76a6a42c..6f351eb6 100644
--- a/src/command/search.rs
+++ b/src/command/search.rs
@@ -153,7 +153,7 @@ async fn key_handler(
app: &mut State,
) -> Option<String> {
match input {
- Key::Esc => return Some(String::from("")),
+ Key::Esc | Key::Ctrl('c') => return Some(String::from("")),
Key::Char('\n') => {
let i = app.results_state.selected().unwrap_or(0);