Skip to content

Commit

Permalink
Fix #351 END key does not work
Browse files Browse the repository at this point in the history
  • Loading branch information
hymkor committed Jan 17, 2019
1 parent e33002a commit d4bcf96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readline/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ var name2char = map[string]string{
K_CTRL_BREAK: "0x03",
K_DELETE: "\x1B[3~",
K_DOWN: "\x1B[B",
K_END: "0x23",
K_END: "\x1B[F",
K_F10: "\x1B[21~",
K_F11: "0x7A",
K_F12: "\x1B[24~",
Expand Down

0 comments on commit d4bcf96

Please sign in to comment.