when editing c#, typing /* causes */ to be injected. Fixes #43989

This commit is contained in:
Martin Aeschlimann
2019-10-08 17:39:43 +02:00
parent 52649cbefe
commit eb9fe80de6
2 changed files with 3 additions and 5 deletions

View File

@@ -13,8 +13,7 @@
["[", "]"],
["(", ")"],
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "\"", "close": "\"", "notIn": ["string", "comment"] },
{ "open": "/*", "close": " */", "notIn": ["string"] }
{ "open": "\"", "close": "\"", "notIn": ["string", "comment"] }
],
"surroundingPairs": [
["{", "}"],
@@ -30,4 +29,4 @@
"end": "^\\s*#endregion\\b"
}
}
}
}