Better paired operators for R (#155882)
Co-authored-by: Martin Aeschlimann <martinae@microsoft.com>pull/160763/head
parent
1a55beb2aa
commit
77dd5f36d5
|
@ -11,13 +11,16 @@
|
|||
["{", "}"],
|
||||
["[", "]"],
|
||||
["(", ")"],
|
||||
["`", "`"],
|
||||
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
||||
{ "open": "'", "close": "'", "notIn": ["string"] }
|
||||
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
|
||||
{ "open": "%", "close": "%", "notIn": ["string", "comment"] }
|
||||
],
|
||||
"surroundingPairs": [
|
||||
["{", "}"],
|
||||
["[", "]"],
|
||||
["(", ")"],
|
||||
["`", "`"],
|
||||
["\"", "\""],
|
||||
["'", "'"]
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue