Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/commands/syntax.rs')
-rw-r--r--helix-term/src/commands/syntax.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-term/src/commands/syntax.rs b/helix-term/src/commands/syntax.rs
index 5070ec45..1fed4754 100644
--- a/helix-term/src/commands/syntax.rs
+++ b/helix-term/src/commands/syntax.rs
@@ -40,6 +40,7 @@ enum TagKind {
Class,
Constant,
Enum,
+ Field,
Function,
Interface,
Macro,
@@ -55,6 +56,7 @@ impl TagKind {
Self::Class => "class",
Self::Constant => "constant",
Self::Enum => "enum",
+ Self::Field => "field",
Self::Function => "function",
Self::Interface => "interface",
Self::Macro => "macro",
@@ -70,6 +72,7 @@ impl TagKind {
"class" => Some(TagKind::Class),
"constant" => Some(TagKind::Constant),
"enum" => Some(TagKind::Enum),
+ "field" => Some(TagKind::Field),
"function" => Some(TagKind::Function),
"interface" => Some(TagKind::Interface),
"macro" => Some(TagKind::Macro),