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.json24
1 files changed, 2 insertions, 22 deletions
diff --git a/editor/VSCode/language-configuration.json b/editor/VSCode/language-configuration.json
index 8f162a0c..d38cd8e5 100644
--- a/editor/VSCode/language-configuration.json
+++ b/editor/VSCode/language-configuration.json
@@ -1,30 +1,10 @@
 {
     "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": [ "/*", "*/" ]
+        "lineComment": "#"
     },
-    // 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
+}