summaryrefslogtreecommitdiffstats
path: root/src/subcommands/show_config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/subcommands/show_config.rs')
-rw-r--r--src/subcommands/show_config.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/subcommands/show_config.rs b/src/subcommands/show_config.rs
index a36ee4a2..ae45e877 100644
--- a/src/subcommands/show_config.rs
+++ b/src/subcommands/show_config.rs
@@ -54,12 +54,14 @@ pub fn show_config(config: &config::Config, writer: &mut dyn Write) -> std::io::
file-added-label = {file_added_label}
file-modified-label = {file_modified_label}
file-removed-label = {file_removed_label}
- file-renamed-label = {file_renamed_label}",
+ file-renamed-label = {file_renamed_label}
+ right-arrow = {right_arrow}",
true_color = config.true_color,
file_added_label = format_option_value(&config.file_added_label),
file_modified_label = format_option_value(&config.file_modified_label),
file_removed_label = format_option_value(&config.file_removed_label),
file_renamed_label = format_option_value(&config.file_renamed_label),
+ right_arrow = format_option_value(&config.right_arrow),
)?;
writeln!(
writer,