We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5d7bda commit c3b82ffCopy full SHA for c3b82ff
queries/highlights.scm
@@ -1,6 +1,6 @@
1
; Reserved keywords
2
3
-["when" "and" "or" "not" "in" "fn" "do" "end" "catch" "rescue" "after" "else"] @keyword
+["when" "and" "or" "not" "in" "not in" "fn" "do" "end" "catch" "rescue" "after" "else"] @keyword
4
5
; Operators
6
test/highlight/operators.ex
@@ -1,3 +1,20 @@
+a in b
+# <- variable
+# ^ keyword
+# ^ variable
+
+a not in b
7
8
9
10
11
12
13
14
15
16
17
18
a ~>> b = bind(a, b)
19
# <- variable
20
# ^ operator
0 commit comments