Commit 0333b87a authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

input: distinguish <Alt+Left> from <Alt+Right> on an rxvt terminal

Both would jump a word to the left -- now each jumps a word in the
proper direction.
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -401,10 +401,10 @@ int parse_kbinput(WINDOW *win)
retval = KEY_END;
break;
case 'C':
retval = controlright;
retval = CONTROL_RIGHT;
break;
case 'D':
retval = controlleft;
retval = CONTROL_LEFT;
break;
case 'a':
retval = shiftaltup;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment