1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 15:04:36 +03:00
wezterm/wezterm-dynamic
Wez Furlong da7da888cd config: generate errors for things like --config tarm=foo
Invalid option names, or values that evaluate as nil (such as the `foo`
above: that's treated as a global variable reference, but `foo` isn't a
defined global and evaluates as `nil`) will now cause the program
startup to error out with an actionable error message.

Previously, the invalid config name would generate a warning, and the
invalid value would silently have no effect as it has the same effect as
omitting the named value and leaving it as its default value.

I think these cases should both immediately error out and stop
further processing, so that's what we're doing.

This commit also adds support for adding:

```
   #[dynamic(deprecated = "use newer option instead")]
   pub some_config_value: bool,
```

but not options currently use this.
2022-05-21 13:10:30 -07:00
..
derive config: generate errors for things like --config tarm=foo 2022-05-21 13:10:30 -07:00
src config: generate errors for things like --config tarm=foo 2022-05-21 13:10:30 -07:00
tests add wezterm-dynamic crate 2022-05-18 07:47:39 -07:00
Cargo.toml add wezterm-dynamic crate 2022-05-18 07:47:39 -07:00