Skip to content

Commit

Permalink
Add language-configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
technosophos committed May 23, 2017
1 parent c053c0a commit 9aff1f1
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions language-configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"comments": {
// symbol used for single line comment. Remove this entry if your language does not support line comments
//"lineComment": "//",
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
"blockComment": [ "/*", "*/" ]
},
// symbols used as brackets
"brackets": [
["{{", "}}"],
["{{-", "-}}"],
["{", "}"],
["[", "]"],
["(", ")"]
],
// symbols that are auto closed when typing
"autoClosingPairs": [
["{{", "}}"],
["{{-", "-}}"],
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["`", "`"]
],
// symbols that that can be used to surround a selection
"surroundingPairs": [
["{{", "}}"],
["{{-", "-}}"],
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["`", "`"]
]
}

0 comments on commit 9aff1f1

Please sign in to comment.