summaryrefslogtreecommitdiffstats
path: root/src/features
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-07-01 12:28:51 -0400
committerDan Davison <dandavison7@gmail.com>2020-07-01 12:28:51 -0400
commit093ff431f5a1c7af6fe6170d6944dce3b3d05059 (patch)
tree17576dd0efa56eb501a63bc62c067cf50975f67c /src/features
parent1056102cf384e2c17d28eeca860554a6e16bc37e (diff)
Diffstat (limited to 'src/features')
-rw-r--r--src/features/line_numbers.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/features/line_numbers.rs b/src/features/line_numbers.rs
index bd2ad0ef..3fe95134 100644
--- a/src/features/line_numbers.rs
+++ b/src/features/line_numbers.rs
@@ -2,7 +2,6 @@ use ansi_term;
use lazy_static::lazy_static;
use regex::Regex;
-use crate::color;
use crate::config;
use crate::features::OptionValueFunction;
use crate::style::Style;
@@ -34,7 +33,7 @@ pub fn make_feature() -> Vec<(String, OptionValueFunction)> {
opt => if opt.computed.is_light_mode {
"red".to_string()
} else {
- "88"
+ "88".to_string()
}
),
(
@@ -50,7 +49,7 @@ pub fn make_feature() -> Vec<(String, OptionValueFunction)> {
opt => if opt.computed.is_light_mode {
"green".to_string()
} else {
- "28"
+ "28".to_string()
}
)
])