Skip to content

Commit

Permalink
Add release notes for "Pretty print values in nix repl"
Browse files Browse the repository at this point in the history
  • Loading branch information
9999years committed Feb 14, 2024
1 parent 0f12692 commit 6d2b446
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions doc/manual/rl-next/pretty-print-in-nix-repl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
synopsis: "`nix repl` pretty-prints values"
prs: 9931
---

`nix repl` will now pretty-print values:

```
{
attrs = {
a = {
b = {
c = { };
};
};
};
list = [ 1 ];
list' = [
1
2
3
];
}
```

0 comments on commit 6d2b446

Please sign in to comment.