How can I set my own PAGER? #569
Locked
ankitpokhrel
announced in
FAQs
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
JiraCLI uses
less
as a pager (cat
indumb
terminals) by default. However, you can useJIRA_PAGER
or standardPAGER
environment variable to override the value for default pager. The envJIRA_PAGER
gets precedence over thePAGER
variable.Examples:
$ PAGER=less jira issue view ISS-1 $ JIRA_PAGER="less -R" jira issue view ISS-1 $ JIRA_PAGER=bat jira issue view ISS-1
Beta Was this translation helpful? Give feedback.
All reactions