summaryrefslogtreecommitdiff
path: root/language-configuration.json
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2019-02-05 22:35:04 +0100
committerBen Beltran <ben@nsovocal.com>2019-02-05 22:35:04 +0100
commit55ab0586626b0a833e7b3801164699e4b3a640c2 (patch)
tree7ebd3f76327b8d9f5e4840592ce3f37e9fe63827 /language-configuration.json
parent4549164147a331c583651f87d3d0490eb0a0397f (diff)
parentb1cf6d7ccd532b35c845ba93170996f700ce59a7 (diff)
Merge branch 'release/1.0.0'1.0.0
Diffstat (limited to 'language-configuration.json')
-rw-r--r--language-configuration.json30
1 files changed, 30 insertions, 0 deletions
diff --git a/language-configuration.json b/language-configuration.json
new file mode 100644
index 0000000..aa25710
--- /dev/null
+++ b/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 that can be used to surround a selection
+ "surroundingPairs": [
+ ["{", "}"],
+ ["[", "]"],
+ ["(", ")"],
+ ["\"", "\""],
+ ["'", "'"]
+ ]
+} \ No newline at end of file