```py @click.command() @click.option('--a', required=True, envvar="b", show_envvar=True) def f(a): ... f() ``` Here I would want the error message to show the env var.