You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/src/changelog.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,18 @@ toc_depth: 1
9
9
This page documents new features and bugfixes for cargo-nextest. Please see the [stability
10
10
policy](https://nexte.st/docs/stability/) for how versioning works with cargo-nextest.
11
11
12
+
## [0.9.119-b.1] - 2026-01-05
13
+
14
+
### Added
15
+
16
+
Support for using [a pager like `less`](https://nexte.st/docs/user-config/pager/) with nextest's output. Currently supported are:
17
+
18
+
-`cargo nextest list`
19
+
-`cargo nextest show-config test-groups`
20
+
-`-h` and `--help` commands
21
+
22
+
The pager support is closely modeled after the [Jujutsu version control system](https://github.com/jj-vcs/jj). The default pager is `less -FRX` on Unix platforms, and a builtin pager (based on [sapling-streampager](https://docs.rs/sapling-streampager)) on Windows.
23
+
12
24
## [0.9.118] - 2026-01-04
13
25
14
26
### Added
@@ -1789,6 +1801,7 @@ Supported in this initial release:
1789
1801
- [Test retries](https://nexte.st/book/retries.md) and flaky test detection
1790
1802
- [JUnit support](https://nexte.st/book/junit.md) for integration with other test tooling
Copy file name to clipboardExpand all lines: site/src/docs/user-config/pager.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@ description: "Pager support: scrollable output for long listings and help."
9
9
10
10
Nextest supports paging output through an external pager (like `less`) or a builtin pager. This is useful for commands that produce long output, such as `cargo nextest list` or `cargo nextest show-config test-groups`.
11
11
12
+
Nextest's pager support is closely modeled after the [Jujutsu version control system](https://github.com/jj-vcs/jj).
13
+
12
14
## Paged commands
13
15
14
16
The following commands support paging:
@@ -64,9 +66,11 @@ The `pager` setting specifies which pager to use. It supports several formats:
64
66
pager = ":builtin"
65
67
```
66
68
67
-
Use nextest's builtin pager (based on [streampager]).
69
+
Use nextest's builtin pager (based on [sapling-streampager]).
0 commit comments