aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
Diffstat (limited to 'code')
-rw-r--r--code/src/syntax_highlight/grammar.rs6
-rw-r--r--code/src/syntax_highlight/theme.rs2
2 files changed, 4 insertions, 4 deletions
diff --git a/code/src/syntax_highlight/grammar.rs b/code/src/syntax_highlight/grammar.rs
index dad2eec..aa4008a 100644
--- a/code/src/syntax_highlight/grammar.rs
+++ b/code/src/syntax_highlight/grammar.rs
@@ -4,14 +4,14 @@ pub fn grammar_for(syntax: &str) -> &'static [(&'static str, &'static [&'static
(
"keyword",
&[
- "fn", "pub", "async", "return", "if", "else", "let", "for", "while", "loop",
- "impl", "for", "trait", "struct", "enum",
+ "fn", "pub", "async", "return", "if", "else", "let", "for", "in", "while",
+ "loop", "impl", "for", "trait", "struct", "enum",
],
),
(
"type",
&[
- "[A-Z][a-z]*",
+ "[A-Z][a-z0-9]*",
"bool",
"usize",
"u8",
diff --git a/code/src/syntax_highlight/theme.rs b/code/src/syntax_highlight/theme.rs
index 77018db..288662a 100644
--- a/code/src/syntax_highlight/theme.rs
+++ b/code/src/syntax_highlight/theme.rs
@@ -3,7 +3,7 @@ pub fn theme(kind: &str) -> &'static str {
"keyword" => "#9999ff",
"macro" => "#ff2863",
"literal" => "#26a6ff",
- "functions" => "#26ffbc",
+ "function" => "#26ffbc",
"types" => "#26ff34",
"identifier" => "#ccff26",
"" => "#ff7c26",