summaryrefslogtreecommitdiff
path: root/src/options.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2020-06-07 23:07:03 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2020-06-07 23:07:03 +0900
commita7aa08ce07e2c21ac9ed8621e46cbe989228f3cd (patch)
treec2b82601fe5ab28177098a69e84541639aa926ee /src/options.go
parent06d63a862e900dcc6ee6c2335120cc8cb939698f (diff)
downloadfzf-a7aa08ce07e2c21ac9ed8621e46cbe989228f3cd.tar.gz
Add backward-eof event for --bind
Diffstat (limited to 'src/options.go')
-rw-r--r--src/options.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/options.go b/src/options.go
index 32c50af5..2979da6b 100644
--- a/src/options.go
+++ b/src/options.go
@@ -464,6 +464,8 @@ func parseKeyChords(str string, message string) map[int]string {
chord = tui.CtrlRightBracket
case "change":
chord = tui.Change
+ case "backward-eof":
+ chord = tui.BackwardEOF
case "alt-enter", "alt-return":
chord = tui.CtrlAltM
case "alt-space":