aboutsummaryrefslogtreecommitdiff
path: root/editors/vscode/language-configuration.json
diff options
context:
space:
mode:
authorDaniel Gavin <danielgavin5@hotmail.com>2021-05-04 22:24:28 +0200
committerDaniel Gavin <danielgavin5@hotmail.com>2021-05-04 22:24:28 +0200
commit80c7050515c29d7bd0ca608832ddd5ee11361fd9 (patch)
tree1682e73355484527af7e7563c217237fd63df505 /editors/vscode/language-configuration.json
parente123d0024da473808263371e32cf23f0c29c726e (diff)
move vscode extension to make it easier to sync releases
Diffstat (limited to 'editors/vscode/language-configuration.json')
-rw-r--r--editors/vscode/language-configuration.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/editors/vscode/language-configuration.json b/editors/vscode/language-configuration.json
new file mode 100644
index 0000000..d676f80
--- /dev/null
+++ b/editors/vscode/language-configuration.json
@@ -0,0 +1,27 @@
+{
+ "comments": {
+ "lineComment": "//",
+ "blockComment": ["/*", "*/"]
+ },
+ "brackets": [
+ ["{", "}"],
+ ["[", "]"],
+ ["(", ")"]
+ ],
+ "autoClosingPairs": [
+ ["{", "}"],
+ ["[", "]"],
+ ["(", ")"],
+ ["\"", "\""],
+ ["'", "'"],
+ ["`", "`"]
+ ],
+ "surroundingPairs": [
+ ["{", "}"],
+ ["[", "]"],
+ ["(", ")"],
+ ["\"", "\""],
+ ["'", "'"],
+ ["`", "`"]
+ ]
+} \ No newline at end of file