summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2019-12-27 23:01:53 -0800
committerGitHub <noreply@github.com>2019-12-27 23:01:53 -0800
commit04c342cd0bbff6f9a790ba1f3abc79517bbec096 (patch)
treeb2018b00dbdf326ac14163291423e351465e6124
parent25ebdd4f95f024bce2ec5b84f72c30bbd63ed57a (diff)
parent475003faa06686831d7c7ae6b8b95a666ecd0986 (diff)
Merge pull request #125 from gpanders/ctrl-g-exit
Cancel with Ctrl-G
-rw-r--r--fzy.12
-rw-r--r--src/tty_interface.c1
2 files changed, 2 insertions, 1 deletions
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 e87301d..aa67f1f 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 */