From aedd4ac6d68ec5ce2725b1b1d4fddddd3859ee1f Mon Sep 17 00:00:00 2001 From: Torsten Long Date: Wed, 14 Aug 2024 19:49:26 +0200 Subject: [PATCH] Fix incorrect env var nam --- src/cfg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cfg.rs b/src/cfg.rs index 4532101..02849d7 100644 --- a/src/cfg.rs +++ b/src/cfg.rs @@ -244,7 +244,7 @@ pub struct CliArgs { /// Specify a downstream pager for diffs (with args) that reads diffs from stdin. /// {n} Useful if you want to display a diff nicely. For example, specify /// {n} "delta --side-by-side" to get a side-by-side view. - #[arg(value_enum, short, long, env = "MDSLW_REPORT")] + #[arg(value_enum, short, long, env = "MDSLW_DIFF_PAGER")] pub diff_pager: Option, /// The path to the file that is read from stdin. This is used to determine relevant config /// files{n} when reading from stdin and to run an upstream formatter.