diff --git a/CHANGELOG.md b/CHANGELOG.md index e48265e646..4616ce3788 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### New features * Commands with long output are paginated. + [#9](https://github.com/martinvonz/jj/issues/9) * The new `jj git remote rename` command allows git remotes to be renamed in-place. diff --git a/src/ui.rs b/src/ui.rs index d26749099d..dc4899172e 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -111,7 +111,7 @@ fn pager_setting(settings: &UserSettings) -> FullCommandArgs { settings .config() .get("ui.pager") - .unwrap_or_else(|_| "less".into()) + .unwrap_or_else(|_| "less -FRX".into()) } impl Ui {