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 cb8f7f3 commit b199996Copy full SHA for b199996
syntaxes/r.json
@@ -40,6 +40,9 @@
40
},
41
{
42
"include": "#function-calls"
43
+ },
44
+ {
45
+ "match": "(?:[a-zA-Z._][\\w.]*|`[^`]+`)"
46
}
47
],
48
"repository": {
syntaxes/r.yaml
@@ -25,6 +25,7 @@ patterns:
25
- include: "#lambda-functions"
26
- include: "#builtin-functions"
27
- include: "#function-calls"
28
+ - match: '{{var}}'
29
30
repository:
31
accessor:
tests/testdata/basics.R
@@ -152,3 +152,7 @@ foo::median
152
my_vector |>
153
# ^^ keyword.operator.pipe.r
154
foo()
155
+
156
+# issue #1
157
+foo(x = `#afd`)
158
+# ^^^^ -comment
0 commit comments