diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2023-04-12 13:23:10 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2023-04-12 13:23:10 +0900 |
| commit | 96670d5f16dcf23d590eb1d83d1de351b2e8fb15 (patch) | |
| tree | b917e9a29a12d6db03e289f4a2ca29d35842d4b3 /src | |
| parent | 36b971ee4eedba08d80421bcfbdbfb2485dc2b9f (diff) | |
| download | fzf-96670d5f16dcf23d590eb1d83d1de351b2e8fb15.tar.gz | |
Disallow using --track with --tac
Close #3234
Diffstat (limited to 'src')
| -rw-r--r-- | src/options.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/options.go b/src/options.go index 8703c0ec..071819d9 100644 --- a/src/options.go +++ b/src/options.go @@ -1938,6 +1938,10 @@ func postProcessOptions(opts *Options) { errorExit("scrollbar display width should be 1") } + if opts.Track && opts.Tac { + errorExit("--track cannot be used with --tac") + } + // Default actions for CTRL-N / CTRL-P when --history is set if opts.History != nil { if _, prs := opts.Keymap[tui.CtrlP.AsEvent()]; !prs { |
