Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/flatbuffers/highlights.scm')
-rw-r--r--runtime/queries/flatbuffers/highlights.scm89
1 files changed, 0 insertions, 89 deletions
diff --git a/runtime/queries/flatbuffers/highlights.scm b/runtime/queries/flatbuffers/highlights.scm
deleted file mode 100644
index 213bb850..00000000
--- a/runtime/queries/flatbuffers/highlights.scm
+++ /dev/null
@@ -1,89 +0,0 @@
-[
- "namespace"
- "attribute"
- "table"
- "struct"
- "union"
- "enum"
- "root_type"
- "rpc_service"
- "file_extension"
- "file_identifier"
-] @keyword
-
-"include" @keyword.control.import
-
-[
- ";"
- "."
- ","
-] @punctuation.delimiter
-
-(type) @type.builtin
-(string_constant) @string
-
-[
- (true)
- (false)
-] @constant.builtin.boolean
-
-[
- (inf_token)
- (nan_token)
-] @constant.builtin
-
-[
- (int_lit)
- (int_constant)
-] @constant.numeric.integer
-
-[
- (float_lit)
- (float_constant)
-] @constant.numeric.float
-
-
-(comment) @comment
-(documentation) @comment.line.documentation
-
-[
- "("
- ")"
- "["
- "]"
- "{"
- "}"
-] @punctuation.bracket
-
-[
- (metadata)
-] @attribute
-
-(attribute_decl
- attribute_name: (identifier) @string)
-
-(namespace_decl
- namespace_ident: (full_ident) @namespace)
-
-(type_decl
- table_or_struct_name: (identifier) @type)
-
-(enum_decl
- enum_name: (identifier) @type)
-
-(enum_val_decl
- enum_key: (identifier) @type)
-
-(union_decl
- union_name: (identifier) @type)
-
-(root_decl
- root_type_ident: (identifier) @type)
-
-(rpc_decl
- rpc_name: (identifier) @type)
-
-(rpc_method
- rpc_method_name: (identifier) @function
- rpc_parameter: (identifier) @variable.parameter
- rpc_return_type: (identifier) @type)