From 04017c25bb719c31bb18d43b4bcb96c4736f8d91 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sat, 25 Jan 2025 11:22:32 +0900 Subject: Add 'bell' action to ring the terminal bell --- src/options.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/options.go') 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 { -- cgit v1.2.3