1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-11 14:25:57 +03:00
wezterm/luahelper/src
Wez Furlong 5190c3e6cb
ValuePrinter: improve array style table detection
before:

```
> { a = {'a'}, 1, {2} }
[
    1,
    [
        2,
    ],
]
```

after:

```
> { a = {'a'}, 1, {2} }
{
    "a": [
        "a",
    ],
    1: 1,
    2: [
        2,
    ],
}
```

refs: https://github.com/wez/wezterm/pull/4336
2023-12-02 08:05:47 -07:00
..
enumctor.rs deps: upgrade mlua to 0.9.0-rc.1 2023-07-12 14:14:55 -07:00
lib.rs ValuePrinter: improve array style table detection 2023-12-02 08:05:47 -07:00