Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/cel/highlights.scm')
-rw-r--r--runtime/queries/cel/highlights.scm66
1 files changed, 0 insertions, 66 deletions
diff --git a/runtime/queries/cel/highlights.scm b/runtime/queries/cel/highlights.scm
deleted file mode 100644
index 73770752..00000000
--- a/runtime/queries/cel/highlights.scm
+++ /dev/null
@@ -1,66 +0,0 @@
-; Operators
-
-[
- "-"
- "!"
- "*"
- "/"
- "&&"
- "%"
- "+"
- "<"
- "<="
- "=="
- ">"
- ">="
- "||"
-] @operator
-
-; Keywords
-
-[
-"in"
-] @keyword
-
-; Identifiers
-
-(identifier) @variable.other.member
-
-(select_expression
- operand: (identifier) @type)
-
-(select_expression
- operand: (select_expression
- member: (identifier) @type))
-
-; Function calls
-
-(call_expression
- function: (identifier) @function)
-
-(member_call_expression
- function: (identifier) @function)
-
-; Literals
-
-[
- (double_quote_string_literal)
- (single_quoted_string_literal)
- (triple_double_quote_string_literal)
- (triple_single_quoted_string_literal)
-] @string
-
-[
- (int_literal)
- (uint_literal)
-] @constant.numeric.integer
-(float_literal) @constant.numeric.float
-
-[
- (true)
- (false)
-] @constant.builtin.boolean
-
-(null) @constant.builtin
-
-(comment) @comment