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 */