aboutsummaryrefslogtreecommitdiff
path: root/editors/code/language-configuration.json
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/language-configuration.json')
-rw-r--r--editors/code/language-configuration.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/editors/code/language-configuration.json b/editors/code/language-configuration.json
new file mode 100644
index 000000000..b20e0d978
--- /dev/null
+++ b/editors/code/language-configuration.json
@@ -0,0 +1,38 @@
1{
2 "comments": {
3 "lineComment": "//",
4 "blockComment": [ "/*", "*/" ]
5 },
6 "brackets": [
7 ["{", "}"],
8 ["[", "]"],
9 ["(", ")"],
10 ["<", ">"]
11 ],
12 "autoClosingPairs": [
13 { "open": "{", "close": "}" },
14 { "open": "[", "close": "]" },
15 { "open": "(", "close": ")" },
16 { "open": "\"", "close": "\"", "notIn": ["string"] },
17 { "open": "/*", "close": " */" }
18 ],
19 "autoCloseBefore": ";:.,=}])> \n\t",
20 "surroundingPairs": [
21 ["{", "}"],
22 ["[", "]"],
23 ["(", ")"],
24 ["<", ">"],
25 ["\"", "\""],
26 ["'", "'"]
27 ],
28 "indentationRules": {
29 "increaseIndentPattern": "^.*\\{[^}\"']*$|^.*\\([^\\)\"']*$",
30 "decreaseIndentPattern": "^\\s*(\\s*\\/[*].*[*]\\/\\s*)*[})]"
31 },
32 "folding": {
33 "markers": {
34 "start": "^\\s*//\\s*#?region\\b",
35 "end": "^\\s*//\\s*#?endregion\\b"
36 }
37 }
38}