Path: blob/main/extensions/css/language-configuration.json
3309 views
{1"comments": {2"blockComment": ["/*", "*/"]3},4"brackets": [5["{", "}"],6["[", "]"],7["(", ")"]8],9"autoClosingPairs": [10{ "open": "{", "close": "}", "notIn": ["string", "comment"] },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],16"surroundingPairs": [17["{", "}"],18["[", "]"],19["(", ")"],20["\"", "\""],21["'", "'"]22],23"folding": {24"markers": {25"start": "^\\s*\\/\\*\\s*#region\\b\\s*(.*?)\\s*\\*\\/",26"end": "^\\s*\\/\\*\\s*#endregion\\b.*\\*\\/"27}28},29"indentationRules": {30"increaseIndentPattern": "(^.*\\{[^}]*$)",31"decreaseIndentPattern": "^\\s*\\}"32},33"wordPattern": "(#?-?\\d*\\.\\d\\w*%?)|(::?[\\w-]*(?=[^,{;]*[,{]))|(([@#.!])?[\\w-?]+%?|[@#!.])"34}353637