summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authortjp <tjp@ctrl-c.club>2024-01-05 10:02:07 -0700
committertjp <tjp@ctrl-c.club>2024-01-05 10:02:07 -0700
commita8bfa115fb7186643258d1d654b770c9773bff4a (patch)
tree0077ca05305afc79c453830c4ff25bee086b8a6d /main.go
parentcccf020a84f7cfe7f17ea94dedb0e5fb89f57c94 (diff)
auto_pager bool to pager string always/auto/never
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 97cce21..a303485 100644
--- a/main.go
+++ b/main.go
@@ -17,7 +17,7 @@ func main() {
state := NewBrowserState()
state.Quiet = conf.Quiet
- state.AutoPager = conf.AutoPager
+ state.Pager = conf.Pager
rl, err := readline.New(Prompt)
if err != nil {