eldritch horrors
43cedec6c5
Reduce visual clutter in the debugger
(cherry picked from commit f388a6148dae0fc999f1a67d0b96d76788f9b97f)
Change-Id: I21bfe3e9f75816484b0f46dbe09e0ff40b22c6d9
38 lines
571 B
Markdown
38 lines
571 B
Markdown
---
|
|
synopsis: "Visual clutter in `--debugger` is reduced"
|
|
prs: 9919
|
|
---
|
|
|
|
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>
|
|
```
|