summaryrefslogtreecommitdiffstats
path: root/src/options.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2022-10-27 00:33:05 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2022-10-27 00:38:38 +0900
commit168829b5550336886a426073670153f84f8a34b2 (patch)
tree43084ac5326894ddc29850c6af79413b0f8ccdee /src/options.go
parent170fc517d0b01f1bb3b64097e62bd937f8fbf666 (diff)
Add 'start' event that is triggered once when fzf finder starts
Close #1622
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 e17efc96..acf67281 100644
--- a/src/options.go
+++ b/src/options.go
@@ -543,6 +543,8 @@ func parseKeyChords(str string, message string) map[tui.Event]string {
add(tui.Change)
case "backward-eof":
add(tui.BackwardEOF)
+ case "start":
+ add(tui.Start)
case "alt-enter", "alt-return":
chords[tui.CtrlAltKey('m')] = key
case "alt-space":