summaryrefslogtreecommitdiffstats
path: root/src/paint.rs
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-05-30 15:17:31 -0400
committerDan Davison <dandavison7@gmail.com>2020-05-30 16:55:38 -0400
commitccdec160407d25cbe3eb461b06c5b4c7cbd3842d (patch)
tree75a2937f8dc973b80b51b473aa5059957d1b4453 /src/paint.rs
parented08407e42bf4e6ac7e2599fb598e84fd0cf8c51 (diff)
Add is_omitted field to Style struct
Diffstat (limited to 'src/paint.rs')
-rw-r--r--src/paint.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/paint.rs b/src/paint.rs
index f200701d..b975193d 100644
--- a/src/paint.rs
+++ b/src/paint.rs
@@ -417,6 +417,7 @@ mod superimpose_style_sections {
is_underline: true,
..ansi_term::Style::new()
},
+ is_omitted: false,
is_raw: false,
is_syntax_highlighted: true,
decoration_style: DecorationStyle::NoDecoration,
@@ -430,6 +431,7 @@ mod superimpose_style_sections {
is_underline: true,
..ansi_term::Style::new()
},
+ is_omitted: false,
is_raw: false,
is_syntax_highlighted: false,
decoration_style: DecorationStyle::NoDecoration,
@@ -443,6 +445,7 @@ mod superimpose_style_sections {
is_underline: true,
..ansi_term::Style::new()
},
+ is_omitted: false,
is_raw: false,
is_syntax_highlighted: true,
decoration_style: DecorationStyle::NoDecoration,