Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/css/language-configuration.json
3309 views
1
{
2
"comments": {
3
"blockComment": ["/*", "*/"]
4
},
5
"brackets": [
6
["{", "}"],
7
["[", "]"],
8
["(", ")"]
9
],
10
"autoClosingPairs": [
11
{ "open": "{", "close": "}", "notIn": ["string", "comment"] },
12
{ "open": "[", "close": "]", "notIn": ["string", "comment"] },
13
{ "open": "(", "close": ")", "notIn": ["string", "comment"] },
14
{ "open": "\"", "close": "\"", "notIn": ["string", "comment"] },
15
{ "open": "'", "close": "'", "notIn": ["string", "comment"] }
16
],
17
"surroundingPairs": [
18
["{", "}"],
19
["[", "]"],
20
["(", ")"],
21
["\"", "\""],
22
["'", "'"]
23
],
24
"folding": {
25
"markers": {
26
"start": "^\\s*\\/\\*\\s*#region\\b\\s*(.*?)\\s*\\*\\/",
27
"end": "^\\s*\\/\\*\\s*#endregion\\b.*\\*\\/"
28
}
29
},
30
"indentationRules": {
31
"increaseIndentPattern": "(^.*\\{[^}]*$)",
32
"decreaseIndentPattern": "^\\s*\\}"
33
},
34
"wordPattern": "(#?-?\\d*\\.\\d\\w*%?)|(::?[\\w-]*(?=[^,{;]*[,{]))|(([@#.!])?[\\w-?]+%?|[@#!.])"
35
}
36
37