diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 8fb865b81..bda256c41 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -1028,13 +1028,13 @@ fn cmd_config( command: &CommandHelper, subcommand: &ConfigSubcommand, ) -> Result<(), CommandError> { - ui.request_pager(); let settings = command.settings(); match subcommand { ConfigSubcommand::List { name, include_defaults, } => { + ui.request_pager(); let name_path = name .as_ref() .map_or(vec![], |name| name.split('.').collect_vec());