-
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The simplest solution would probably be to try the Alternatively, you could try running Third option: you could try setting |
Beta Was this translation helpful? Give feedback.
The simplest solution would probably be to try the
:builtin
pager. It defaults to not clearing the screen.Alternatively, you could try running
export LESS=FRX
(assuming you use bash/fish/zsh) and see if that helps with subsequent jj invocations from the same shell. That tellsless
to not clear the screen. If that works well, you can putexport LESS=FRX
somewhere in your shell setup for a similar effect.Third option: you could try setting
ui.pager
to["less", "-FRX"]
.