From 29b7f3e65ae7ac5514f4e95a71d525b9c385b504 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 96250eb..0a181b9 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 381d46d..25e4b16 100644 --- a/src/tty_interface.c +++ b/src/tty_interface.c @@ -327,7 +327,7 @@ static const keybinding_t keybindings[] = {{"\x1b", action_exit}, /* ESC * {KEY_CTRL('D'), action_exit}, /* C-D */ {KEY_CTRL('G'), action_exit}, /* C-G */ {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 */