Files
nix/tests/functional
Rebecca Turner c0a15fb7d0 Pretty-print values in the REPL
Pretty-print values in the REPL by printing each item in a list or
attrset on a separate line. When possible, single-item lists and
attrsets are printed on one line, as long as they don't contain a nested
list, attrset, or thunk.

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

After:
```
{
  attrs = {
    a = {
      b = {
        c = { };
      };
    };
  };
  list = [ 1 ];
  list' = [
    1
    2
    3
  ];
}
```
2024-02-05 13:23:38 -08:00
..
2024-01-22 08:56:02 -08:00
2024-02-05 13:23:38 -08:00
2023-10-06 09:05:56 -04:00
2024-02-02 13:34:56 +01:00
2023-10-06 09:05:56 -04:00
2024-01-20 17:29:35 -05:00
2023-12-18 14:04:25 -08:00
2023-11-03 11:03:58 +01:00
2024-02-05 13:23:38 -08:00
2023-12-06 14:05:32 +01:00
2023-12-21 22:13:43 +01:00
2023-12-18 11:29:55 -08:00