m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 15:53:39 -05:00

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

@@ -318,6 +318,8 @@ func (r *FullscreenRenderer) GetChar() Event {
}
return Event{Right, 0, nil}
case tcell.KeyInsert:
return Event{Insert, 0, nil}
case tcell.KeyHome:
return Event{Home, 0, nil}
case tcell.KeyDelete: