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, 4 insertions, 0 deletions
diff --git a/src/subcommands/show_config.rs b/src/subcommands/show_config.rs
index 26dc0db0..0c6cc935 100644
--- a/src/subcommands/show_config.rs
+++ b/src/subcommands/show_config.rs
@@ -26,6 +26,8 @@ pub fn show_config(config: &config::Config, writer: &mut dyn Write) -> std::io::
plus-non-emph-style = {plus_non_emph_style}
plus-emph-style = {plus_emph_style}
plus-empty-line-marker-style = {plus_empty_line_marker_style}
+ grep-file-style = {grep_file_style}
+ grep-line-number-style = {grep_line_number_style}
whitespace-error-style = {whitespace_error_style}
blame-palette = {blame_palette}",
blame_palette = config
@@ -44,6 +46,8 @@ pub fn show_config(config: &config::Config, writer: &mut dyn Write) -> std::io::
plus_empty_line_marker_style = config.plus_empty_line_marker_style.to_painted_string(),
plus_non_emph_style = config.plus_non_emph_style.to_painted_string(),
plus_style = config.plus_style.to_painted_string(),
+ grep_file_style = config.grep_file_style.to_painted_string(),
+ grep_line_number_style = config.grep_line_number_style.to_painted_string(),
whitespace_error_style = config.whitespace_error_style.to_painted_string(),
zero_style = config.zero_style.to_painted_string(),
)?;