aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorDusty Pomerleau <[email protected]>2020-12-12 00:31:00 +0000
committerDusty Pomerleau <[email protected]>2020-12-13 08:31:11 +0000
commit612be092826ad6654fd7f8a337c49a39754e9293 (patch)
treef45ca3c4a05b2590a0d12ea349fa02bcc1b7bba3 /editors
parenta15d19619e097b14b670064a4edc054a4251f479 (diff)
add a language configuration for VS Code
Diffstat (limited to 'editors')
-rw-r--r--editors/code/language-configuration.json38
-rw-r--r--editors/code/package.json11
2 files changed, 49 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}
diff --git a/editors/code/package.json b/editors/code/package.json
index ca5f2ebc8..160a62e46 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -734,6 +734,17 @@
734 "extensions": [ 734 "extensions": [
735 ".rast" 735 ".rast"
736 ] 736 ]
737 },
738 {
739 "id": "rust",
740 "extensions": [
741 ".rs"
742 ],
743 "aliases": [
744 "Rust",
745 "rs"
746 ],
747 "configuration": "language-configuration.json"
737 } 748 }
738 ], 749 ],
739 "grammars": [ 750 "grammars": [