added vscode extensions
This commit is contained in:
parent
7cde0829be
commit
26e2a50441
316 changed files with 37301 additions and 0 deletions
47
.vscode/extensions/digitalbrainstem.javascript-ejs-support-1.3.1/language-configuration.json
vendored
Normal file
47
.vscode/extensions/digitalbrainstem.javascript-ejs-support-1.3.1/language-configuration.json
vendored
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"comments": {
|
||||
// symbols used for start and end of a block comment.
|
||||
"blockComment": [ "<%#", "%>", "<%/*", "*/%>", "<?#", "?>", "<?/*", "*/?>" ],
|
||||
},
|
||||
|
||||
// symbols used as brackets
|
||||
"brackets": [
|
||||
["<!--", "-->"],
|
||||
["<", ">"],
|
||||
["{", "}"],
|
||||
["[", "]"],
|
||||
["(", ")"],
|
||||
],
|
||||
|
||||
// symbols that are auto closed when typing
|
||||
"autoClosingPairs": [
|
||||
{ "open": "{", "close": "}" },
|
||||
{ "open": "[", "close": "]" },
|
||||
{ "open": "(", "close": ")" },
|
||||
{ "open": "'", "close": "'" },
|
||||
{ "open": "\"", "close": "\"" },
|
||||
{ "open": "`", "close": "`", "notIn": ["string", "comment"] },
|
||||
{ "open": "/*", "close": " */", "notIn": ["string"] },
|
||||
{ "open": "/**", "close": " */", "notIn": ["string"] },
|
||||
{ "open": "<!--", "close": "-->", "notIn": [ "comment", "string" ]},
|
||||
{ "open": "<%", "close": "%>" },
|
||||
],
|
||||
|
||||
// symbols that that can be used to surround a selection
|
||||
"surroundingPairs": [
|
||||
["<", ">"],
|
||||
["{", "}"],
|
||||
["[", "]"],
|
||||
["(", ")"],
|
||||
["'", "'"],
|
||||
["\"", "\""],
|
||||
["`", "`"],
|
||||
],
|
||||
|
||||
"folding": {
|
||||
"markers": {
|
||||
"start": "^\\s*(?:<[%?][_-#]?(?:\\s*#)?region\\b.*[_-#]?[%?]>|<!--\\s*#region\\b.*-->)",
|
||||
"end": "^\\s*(?:<[%?][_-#]?(?:\\s*#)?endregion\\b.*[_-#]?[%?]>|<!--\\s*#endregion\\b.*-->)",
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue