Skip to content

Commit

Permalink
Merge pull request #25 from Microsoft/languageconf-fixes
Browse files Browse the repository at this point in the history
Languageconf fixes
  • Loading branch information
alexdima committed Nov 16, 2015
2 parents cd42db0 + 889aba9 commit c522d6e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
11 changes: 11 additions & 0 deletions extensions/csharp/csharp.configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"comments": {
"lineComment": "//",
"blockComment": ["/*", "*/"]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
]
}
3 changes: 2 additions & 1 deletion extensions/csharp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"languages": [{
"id": "csharp",
"extensions": [ ".cs", ".csx" ],
"aliases": [ "C#", "csharp" ]
"aliases": [ "C#", "csharp" ],
"configuration": "./csharp.configuration.json"
}],
"grammars": [{
"language": "csharp",
Expand Down
2 changes: 1 addition & 1 deletion extensions/python/python.configuration.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"comments": {
"lineComment": "#",
"blockComment": [ "''", "''" ]
"blockComment": [ "'''", "'''" ]
},
"brackets": [
["{", "}"],
Expand Down

0 comments on commit c522d6e

Please sign in to comment.