summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-06-18 12:36:32 -0400
committerDan Davison <dandavison7@gmail.com>2020-06-18 12:36:32 -0400
commitfbef92d8771b9cea2cf79fc4ddca0f2ac5de237b (patch)
tree655b802ce0b34be512a2db952c0475fe4cc69d88
parentd0d214484a61748c1b7514669abddd528b0d9899 (diff)
Bugfix: syntax-theme was not participating in options-setting logic
-rw-r--r--src/set_options.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/set_options.rs b/src/set_options.rs
index b6d8c0ae..fcd04914 100644
--- a/src/set_options.rs
+++ b/src/set_options.rs
@@ -221,7 +221,7 @@ pub fn set_options(
("plus-emph-style", String, plus_emph_style),
("plus-empty-line-marker-style", String, plus_empty_line_marker_style),
("plus-non-emph-style", String, plus_non_emph_style),
- ("syntax_theme", Option<String>, syntax_theme),
+ ("syntax-theme", Option<String>, syntax_theme),
("tabs", usize, tab_width),
("true-color", String, true_color),
("whitespace-error-style", String, whitespace_error_style),