Skip to content

Commit

Permalink
maple/edit.c: vedit(): The key shortcut Ctrl-U now inputs the cha…
Browse files Browse the repository at this point in the history
…racter `ESC` instead. [ref: PttBBS]

Use `ESC-U` to bring out the user list instead.
  • Loading branch information
IepIweidieng committed Oct 10, 2019
1 parent 9a34b6a commit 92d116e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maple/edit.c
Original file line number Diff line number Diff line change
Expand Up @@ -2130,14 +2130,14 @@ vedit(
ve_mode = mode | VE_REDRAW;
break;

case Ctrl('U'):
case Meta('U'):
case KEY_F8:

every_U();
/*ve_char(27);*/
break;

case Ctrl('U'):
case KEY_ESC:

ve_char(27);
Expand Down

0 comments on commit 92d116e

Please sign in to comment.