Skip to content

Commit

Permalink
Change multi-select key to Ctrl+t (mnemonic: "tag")
Browse files Browse the repository at this point in the history
  • Loading branch information
gpanders committed Mar 6, 2020
1 parent deac972 commit 29b7f3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fzy.1
Original file line number Diff line number Diff line change
Expand Up @@ -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.
.
Expand Down
2 changes: 1 addition & 1 deletion src/tty_interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 29b7f3e

Please sign in to comment.