Add 'insert' key for --bind

Close #1744
This commit is contained in:
Junegunn Choi
2020-02-24 01:43:19 +09:00
parent ec75d16ea8
commit dca56da0ef
5 changed files with 12 additions and 2 deletions

View File

@@ -472,6 +472,8 @@ func parseKeyChords(str string, message string) map[int]string {
chord = tui.Home
case "end":
chord = tui.End
case "insert":
chord = tui.Insert
case "pgup", "page-up":
chord = tui.PgUp
case "pgdn", "page-down":