mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 23:21:08 +03:00
8755e731d3
Fixes this: ``` > wezterm.GLOBAL.foo = {"bar", "baz"} > wezterm.GLOBAL.foo [ "bar", "baz", ] > #wezterm.GLOBAL.foo runtime error: [string "repl"]:1: attempt to get length of a userdata value (field 'foo') stack traceback: [string "repl"]:1: in main chunk > ``` and allows this: ``` > for k, v in pairs(wezterm.GLOBAL.foo) do print(k, v) ; end ``` |
||
---|---|---|
.. | ||
lib.rs |