jade
272db8af1b
This does not add missing release notes, and it doesn't do anything
about the profiles feature we would really like to have so we can have
consistent credit.
Change-Id: I72a6f7acfcff85f380be17dac76501a6f4693776
40 lines
624 B
Markdown
40 lines
624 B
Markdown
---
|
|
synopsis: "Visual clutter in `--debugger` is reduced"
|
|
prs: 9919
|
|
category: Improvements
|
|
credits: [9999years, horrors]
|
|
---
|
|
|
|
Before:
|
|
```
|
|
info: breakpoint reached
|
|
|
|
|
|
Starting REPL to allow you to inspect the current state of the evaluator.
|
|
|
|
Welcome to Nix 2.20.0pre20231222_dirty. Type :? for help.
|
|
|
|
nix-repl> :continue
|
|
error: uh oh
|
|
|
|
|
|
Starting REPL to allow you to inspect the current state of the evaluator.
|
|
|
|
Welcome to Nix 2.20.0pre20231222_dirty. Type :? for help.
|
|
|
|
nix-repl>
|
|
```
|
|
|
|
After:
|
|
|
|
```
|
|
info: breakpoint reached
|
|
|
|
Nix 2.20.0pre20231222_dirty debugger
|
|
Type :? for help.
|
|
nix-repl> :continue
|
|
error: uh oh
|
|
|
|
nix-repl>
|
|
```
|