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 Oct 15, 2019
1 parent 22827c6 commit 5a324e7
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 @@ -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 */
Expand Down

0 comments on commit 5a324e7

Please sign in to comment.