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.
parent 059c8efb
Showing with 2 additions and 2 deletions
+2 -2
...@@ -401,10 +401,10 @@ int parse_kbinput(WINDOW *win) ...@@ -401,10 +401,10 @@ int parse_kbinput(WINDOW *win)
retval = KEY_END; retval = KEY_END;
break; break;
case 'C': case 'C':
retval = controlright; retval = CONTROL_RIGHT;
break; break;
case 'D': case 'D':
retval = controlleft; retval = CONTROL_LEFT;
break; break;
case 'a': case 'a':
retval = shiftaltup; 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