summaryrefslogtreecommitdiff
path: root/src/options.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2025-01-25 11:22:32 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2025-01-25 11:22:32 +0900
commit04017c25bb719c31bb18d43b4bcb96c4736f8d91 (patch)
treea531b4403e1882d514875acef907bf979cd8e4c8 /src/options.go
parent02199cd6093353abd659a8218cfe2faae8e55901 (diff)
downloadfzf-04017c25bb719c31bb18d43b4bcb96c4736f8d91.tar.gz
Add 'bell' action to ring the terminal bell
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 d31b1001..9d233b57 100644
--- a/src/options.go
+++ b/src/options.go
@@ -1586,6 +1586,8 @@ func parseActionList(masked string, original string, prevActions []*action, putA
} else {
return nil, errors.New("unable to put non-printable character")
}
+ case "bell":
+ appendAction(actBell)
default:
t := isExecuteAction(specLower)
if t == actIgnore {