diff options
author | Dan Davison <dandavison7@gmail.com> | 2020-06-30 10:04:24 -0400 |
---|---|---|
committer | Dan Davison <dandavison7@gmail.com> | 2020-06-30 10:04:24 -0400 |
commit | 4eddda710d70a44c161c1f275ab70ee6b6a3c4aa (patch) | |
tree | ec174cc8c8cb10f59713126239046a2e381f9d24 /src/features | |
parent | c6f521ed011ce008856b9d47952330b4b3e51b2a (diff) |
Set default blue style for line-numbers dividing lines
Diffstat (limited to 'src/features')
-rw-r--r-- | src/features/line_numbers.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/features/line_numbers.rs b/src/features/line_numbers.rs index a7522381..0e84975c 100644 --- a/src/features/line_numbers.rs +++ b/src/features/line_numbers.rs @@ -16,6 +16,18 @@ pub fn make_feature() -> Vec<(String, OptionValueFunction)> { _opt => true ), ( + "line-numbers-left-style", + String, + None, + _opt => "blue" + ), + ( + "line-numbers-right-style", + String, + None, + _opt => "blue" + ), + ( "line-numbers-minus-style", String, None, |