m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-16 23:33:39 -05:00

Add key name "bspace" for --bind (bspace != ctrl-h)

This commit is contained in:
Junegunn Choi
2015-06-16 02:18:49 +09:00
parent 45bd323cab
commit d54a4fa223
3 changed files with 5 additions and 1 deletions

View File

@@ -51,6 +51,7 @@ const (
Mouse
BTab
BSpace
Del
PgUp
@@ -483,7 +484,7 @@ func GetChar() Event {
case CtrlQ:
return Event{CtrlQ, 0, nil}
case 127:
return Event{CtrlH, 0, nil}
return Event{BSpace, 0, nil}
case ESC:
return escSequence(&sz)
}