Skip to content

Commit a8c6596

Browse files
committed
C# bracket insertion, indentation not working #4
1 parent 2ebf742 commit a8c6596

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"comments": {
3+
"lineComment": "//",
4+
"blockComment": ["/*", "*/"]
5+
},
6+
"brackets": [
7+
["{", "}"],
8+
["[", "]"],
9+
["(", ")"]
10+
]
11+
}

extensions/csharp/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"languages": [{
88
"id": "csharp",
99
"extensions": [ ".cs", ".csx" ],
10-
"aliases": [ "C#", "csharp" ]
10+
"aliases": [ "C#", "csharp" ],
11+
"configuration": "./csharp.configuration.json"
1112
}],
1213
"grammars": [{
1314
"language": "csharp",

0 commit comments

Comments
 (0)