summaryrefslogtreecommitdiffstats
path: root/src/options.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.go')
-rw-r--r--src/options.go4
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 {