Adopt css to language-configuration

This commit is contained in:
Martin Aeschlimann
2016-07-21 18:52:34 +02:00
parent f4a8c7a5e1
commit edecd8bc74
8 changed files with 95 additions and 55 deletions
@@ -0,0 +1,27 @@
{
"comments": {
"blockComment": ["/*", "*/"],
"lineComment": "//"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"],
["<", ">"]
],
"autoClosingPairs": [
{ "open": "{", "close": "}", "notIn": ["string", "comment"] },
{ "open": "[", "close": "]", "notIn": ["string", "comment"] },
{ "open": "(", "close": ")", "notIn": ["string", "comment"] },
{ "open": "\"", "close": "\"", "notIn": ["string", "comment"] },
{ "open": "'", "close": "'", "notIn": ["string", "comment"] }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["<", ">"]
]
}
+2 -1
View File
@@ -8,7 +8,8 @@
"id": "scss",
"aliases": ["Sass", "scss"],
"extensions": [".scss"],
"mimetypes": ["text/x-scss", "text/scss"]
"mimetypes": ["text/x-scss", "text/scss"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "scss",