This would let you distinguish the different keys from values within
the key.
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
/// Print config item(s), do not actually run
///
/// Argument is (comma-separated) list of config keys;
- /// values will be printed space-separated.
+ /// values will be printed tab-separated.
/// The key `pretty` dumps the whole config in a pretty debug format.
///
/// One line is output for each association.
/// Print config item(s), do not actually run
///
/// Argument is (comma-separated) list of config keys;
- /// values will be printed space-separated.
+ /// values will be printed tab-separated.
/// The key `pretty` dumps the whole config in a pretty debug format.
///
/// If none of the specified config keys are client-specific,
Ok::<_,AE>(DisplayInspectable(insp).to_string())
})
.collect::<Result<Vec<_>,_>>()?
- .join(" ");
+ .join("\t");
println!("{}", output);
}
}