Skip to content

Commit 77dd5f3

Browse files
Better paired operators for R (microsoft#155882)
Co-authored-by: Martin Aeschlimann <[email protected]>
1 parent 1a55beb commit 77dd5f3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: extensions/r/language-configuration.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@
1111
["{", "}"],
1212
["[", "]"],
1313
["(", ")"],
14+
["`", "`"],
1415
{ "open": "\"", "close": "\"", "notIn": ["string"] },
15-
{ "open": "'", "close": "'", "notIn": ["string"] }
16+
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
17+
{ "open": "%", "close": "%", "notIn": ["string", "comment"] }
1618
],
1719
"surroundingPairs": [
1820
["{", "}"],
1921
["[", "]"],
2022
["(", ")"],
23+
["`", "`"],
2124
["\"", "\""],
2225
["'", "'"]
2326
]

0 commit comments

Comments
 (0)