It is currently impossible to set the decoration with the config file. So doing something like this:
reflex.conf
--start-service \
--decoration=none \
--regex='\.go$' \
-- go run .
results in the following error:
Could not parse configs: error on line 1 of reflex.conf: unknown flag: --decoration
This seems to be because the decoration flag is not being set via globalConfig.registerFlags(globalFlags).
Is it possible to allow decoration to be a config flag as well? Or is this behaviour intentional?
It is currently impossible to set the
decorationwith the config file. So doing something like this:reflex.conf
results in the following error:
Could not parse configs: error on line 1 of reflex.conf: unknown flag: --decorationThis seems to be because the decoration flag is not being set via
globalConfig.registerFlags(globalFlags).Is it possible to allow
decorationto be a config flag as well? Or is this behaviour intentional?