From 475003faa06686831d7c7ae6b8b95a666ecd0986 Mon Sep 17 00:00:00 2001 From: Greg Anders Date: Sun, 13 Oct 2019 16:10:34 -0600 Subject: Cancel with Ctrl-G --- fzy.1 | 2 +- src/tty_interface.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/fzy.1 b/fzy.1 index acfb62d..79dbad7 100644 --- a/fzy.1 +++ b/fzy.1 @@ -54,7 +54,7 @@ Usage help. .BR "ENTER" Print the selected item to stdout and exit .TP -.BR "Ctrl+c, Esc" +.BR "Ctrl+c, Ctrl+g, Esc" Exit with status 1, without making a selection. .TP .BR "Up Arrow, Ctrl+p" diff --git a/src/tty_interface.c b/src/tty_interface.c index 225f33a..2dec81a 100644 --- a/src/tty_interface.c +++ b/src/tty_interface.c @@ -291,6 +291,7 @@ static const keybinding_t keybindings[] = {{"\x1b", action_exit}, /* ESC * {KEY_CTRL('I'), action_autocomplete}, /* TAB (C-I ) */ {KEY_CTRL('C'), action_exit}, /* C-C */ {KEY_CTRL('D'), action_exit}, /* C-D */ + {KEY_CTRL('G'), action_exit}, /* C-G */ {KEY_CTRL('M'), action_emit}, /* CR */ {KEY_CTRL('P'), action_prev}, /* C-P */ {KEY_CTRL('N'), action_next}, /* C-N */ -- cgit v1.2.3