From 5a324e7075685ae2cd2f99e11a107b5734e21f48 Mon Sep 17 00:00:00 2001 From: Greg Anders Date: Tue, 15 Oct 2019 08:32:19 -0600 Subject: [PATCH] Change multi-select key to Ctrl+t (mnemonic: "tag") --- fzy.1 | 2 +- src/tty_interface.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fzy.1 b/fzy.1 index ac4d2d1..0dc29ec 100644 --- a/fzy.1 +++ b/fzy.1 @@ -75,7 +75,7 @@ Delete the word before the cursor .BR Ctrl+u Delete the entire line .TP -.BR Ctrl+s +.BR Ctrl+t Multi-select the current item. Each multi-selected item will be printed on its own line. . diff --git a/src/tty_interface.c b/src/tty_interface.c index b6b77cf..bcce0e3 100644 --- a/src/tty_interface.c +++ b/src/tty_interface.c @@ -319,7 +319,7 @@ static const keybinding_t keybindings[] = {{"\x1b", action_exit}, /* ESC * {KEY_CTRL('C'), action_exit}, /* C-C */ {KEY_CTRL('D'), action_exit}, /* C-D */ {KEY_CTRL('M'), action_emit}, /* CR */ - {KEY_CTRL('S'), action_select}, /* C-S */ + {KEY_CTRL('T'), action_select}, /* C-T */ {KEY_CTRL('P'), action_prev}, /* C-P */ {KEY_CTRL('N'), action_next}, /* C-N */ {KEY_CTRL('K'), action_prev}, /* C-K */