about summary refs log tree commit diff stats
path: root/editor/VSCode/language-configuration.json
diff options
context:
space:
mode:
Diffstat (limited to 'editor/VSCode/language-configuration.json')
-rw-r--r--editor/VSCode/language-configuration.json30
1 files changed, 30 insertions, 0 deletions
diff --git a/editor/VSCode/language-configuration.json b/editor/VSCode/language-configuration.json
new file mode 100644
index 00000000..8f162a0c
--- /dev/null
+++ b/editor/VSCode/language-configuration.json
@@ -0,0 +1,30 @@
+{
+    "comments": {
+        // symbol used for single line comment. Remove this entry if your language does not support line comments
+        "lineComment": "//",
+        // symbols used for start and end a block comment. Remove this entry if your language does not support block comments
+        "blockComment": [ "/*", "*/" ]
+    },
+    // symbols used as brackets
+    "brackets": [
+        ["{", "}"],
+        ["[", "]"],
+        ["(", ")"]
+    ],
+    // symbols that are auto closed when typing
+    "autoClosingPairs": [
+        ["{", "}"],
+        ["[", "]"],
+        ["(", ")"],
+        ["\"", "\""],
+        ["'", "'"]
+    ],
+    // symbols that can be used to surround a selection
+    "surroundingPairs": [
+        ["{", "}"],
+        ["[", "]"],
+        ["(", ")"],
+        ["\"", "\""],
+        ["'", "'"]
+    ]
+}
\ No newline at end of file