diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2025-02-09 13:22:33 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-09 13:22:33 +0900 |
| commit | 67dd7e1923f8084de1064bf54659100626c1e0ef (patch) | |
| tree | a89ef048133cadf06854e891932c622580590f21 /src/options.go | |
| parent | 2b584586ed1caf15429625da981575ee35d407b8 (diff) | |
| download | fzf-67dd7e1923f8084de1064bf54659100626c1e0ef.tar.gz | |
Add 'exclude' action for excluding current/selected items from the result (#4231)
Close #4185
Diffstat (limited to 'src/options.go')
| -rw-r--r-- | src/options.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/options.go b/src/options.go index 2b310612..4a6c3b2b 100644 --- a/src/options.go +++ b/src/options.go @@ -1603,6 +1603,8 @@ func parseActionList(masked string, original string, prevActions []*action, putA } case "bell": appendAction(actBell) + case "exclude": + appendAction(actExclude) default: t := isExecuteAction(specLower) if t == actIgnore { |
