Include C# textmate grammar. Fixes #19469

This commit is contained in:
Martin Aeschlimann
2017-02-08 13:06:04 +01:00
parent 2cf9b325cb
commit 0fa326c6a1
7 changed files with 6056 additions and 456 deletions

View File

@@ -0,0 +1,27 @@
{
"comments": {
"lineComment": "//",
"blockComment": ["/*", "*/"]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "\"", "close": "\"", "notIn": ["string", "comment"] },
{ "open": "/*", "close": " */", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["<", ">"],
["'", "'"],
["\"", "\""]
]
}