mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-19 14:22:19 +01:00
C# bracket insertion, indentation not working #4
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"comments": {
|
||||
"lineComment": "//",
|
||||
"blockComment": ["/*", "*/"]
|
||||
},
|
||||
"brackets": [
|
||||
["{", "}"],
|
||||
["[", "]"],
|
||||
["(", ")"]
|
||||
]
|
||||
}
|
||||
@@ -7,7 +7,8 @@
|
||||
"languages": [{
|
||||
"id": "csharp",
|
||||
"extensions": [ ".cs", ".csx" ],
|
||||
"aliases": [ "C#", "csharp" ]
|
||||
"aliases": [ "C#", "csharp" ],
|
||||
"configuration": "./csharp.configuration.json"
|
||||
}],
|
||||
"grammars": [{
|
||||
"language": "csharp",
|
||||
|
||||
Reference in New Issue
Block a user