summaryrefslogtreecommitdiffstats
path: root/src/features/raw.rs
blob: 53f542629aa99a056f6200533887cf818d0f03a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
use crate::features::OptionValueFunction;

pub fn make_feature() -> Vec<(String, OptionValueFunction)> {
    builtin_feature!([
        (
            "commit-decoration-style",
            String,
            None,
            _opt => "none"
        ),
        (
            "commit-style",
            String,
            None,
            _opt => "raw"
        ),
        (
            "file-decoration-style",
            String,
            None,
            _opt => "none"
        ),
        (
            "file-style",
            String,
            None,
            _opt => "raw"
        ),
        (
            "hunk-header-decoration-style",
            String,
            None,
            _opt => "none"
        ),
        (
            "hunk-header-style",
            String,
            None,
            _opt => "raw"
        ),
        (
            "minus-style",
            String,
            Some("color.diff.old"),
            _opt => "red"
        ),
        (
            "minus-emph-style",
            String,
            Some("color.diff.old"),
            _opt => "red"
        ),
        (
            "zero-style",
            String,
            None,
            _opt => "normal"
        ),
        (
            "plus-style",
            String,
            Some("color.diff.new"),
            _opt => "green"
        ),
        (
            "plus-emph-style",
            String,
            Some("color.diff.new"),
            _opt => "green"
        ),
        (
            "keep-plus-minus-markers",
            bool,
            None,
            _opt => true
        ),
        (
            "tabs",
            usize,
            None,
            _opt => 0
        )
    ])
}