summaryrefslogtreecommitdiffstats
path: root/src/features/diff_highlight.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/diff_highlight.rs')
-rw-r--r--src/features/diff_highlight.rs10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/features/diff_highlight.rs b/src/features/diff_highlight.rs
index ea7ac7c9..0f4d5de3 100644
--- a/src/features/diff_highlight.rs
+++ b/src/features/diff_highlight.rs
@@ -7,14 +7,12 @@ pub fn make_feature() -> Vec<(String, OptionValueFunction)> {
pub fn _make_feature(bold: bool) -> Vec<(String, OptionValueFunction)> {
let mut feature = raw::make_feature();
+ feature = feature
+ .into_iter()
+ .filter(|(s, _)| s != "keep-plus-minus-markers" && s != "tabs")
+ .collect();
feature.extend(builtin_feature!([
(
- "keep-plus-minus-markers",
- bool,
- None,
- _opt => false
- ),
- (
"minus-style",
String,
Some("color.diff.old"),