summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2018-06-17 11:25:55 -0700
committerGitHub <noreply@github.com>2018-06-17 11:25:55 -0700
commit1b3306813c7afcb40cbe4da81e077151cae9ae91 (patch)
tree960b5cb7fedf8a6d1534c1e3bc91ed041d484f2f
parentd8cee425ea4258ed7f0bc31aebf3694b8fa1eb57 (diff)
parentd52ebff74cd9798b7886f24ab9f98164151bbd34 (diff)
Merge pull request #82 from neuschaefer/jk
tty_interface: Fix comments about CTRL-J and CTRL-K
-rw-r--r--src/tty_interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tty_interface.c b/src/tty_interface.c
index a7d506e..1af647c 100644
--- a/src/tty_interface.c
+++ b/src/tty_interface.c
@@ -270,8 +270,8 @@ static const keybinding_t keybindings[] = {{"\x7f", action_del_char}, /* DEL */
{KEY_CTRL('M'), action_emit}, /* CR */
{KEY_CTRL('P'), action_prev}, /* C-P */
{KEY_CTRL('N'), action_next}, /* C-N */
- {KEY_CTRL('K'), action_prev}, /* C-J */
- {KEY_CTRL('J'), action_next}, /* C-K */
+ {KEY_CTRL('K'), action_prev}, /* C-K */
+ {KEY_CTRL('J'), action_next}, /* C-J */
{KEY_CTRL('A'), action_beginning}, /* C-A */
{KEY_CTRL('E'), action_end}, /* C-E */