summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2019-10-16 21:48:16 -0700
committerDan Davison <dandavison7@gmail.com>2019-10-16 22:00:27 -0700
commitcca2c470a5a9bcd6770c72647038ccf490af14c0 (patch)
treede50cd483271808afaedc0b43590bb99bd9c3853 /src/main.rs
parentf08b7a62802065f775b305383cd23844c36a854b (diff)
Rename CLI option: --show-background-colors
See #31
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/main.rs b/src/main.rs
index 1ed36e5e..7f4ff061 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -52,8 +52,8 @@ fn main() -> std::io::Result<()> {
let config = cli::process_command_line_arguments(&assets, &opt);
- if opt.show_colors {
- show_colors(&config);
+ if opt.show_background_colors {
+ show_background_colors(&config);
process::exit(0);
}
@@ -75,15 +75,13 @@ fn main() -> std::io::Result<()> {
Ok(())
}
-fn show_colors(config: &config::Config) {
+fn show_background_colors(config: &config::Config) {
println!(
"delta \
- --theme=\"{theme}\" \
--minus-color=\"{minus_color}\" \
--minus-emph-color=\"{minus_emph_color}\" \
--plus-color=\"{plus_color}\" \
--plus-emph-color=\"{plus_emph_color}\"",
- theme = config.theme_name,
minus_color = color_to_hex(config.minus_style_modifier.background.unwrap()),
minus_emph_color = color_to_hex(config.minus_emph_style_modifier.background.unwrap()),
plus_color = color_to_hex(config.plus_style_modifier.background.unwrap()),