Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/language-configuration.json')
-rw-r--r--editors/code/language-configuration.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/editors/code/language-configuration.json b/editors/code/language-configuration.json
index 1c348b63f1..a2af8b51a9 100644
--- a/editors/code/language-configuration.json
+++ b/editors/code/language-configuration.json
@@ -6,7 +6,9 @@
"brackets": [
["{", "}"],
["[", "]"],
- ["(", ")"]
+ ["(", ")"],
+ ["#[", "]"],
+ ["#![", "]"]
],
"colorizedBracketPairs": [
["{", "}"],
@@ -17,6 +19,8 @@
{ "open": "{", "close": "}" },
{ "open": "[", "close": "]" },
{ "open": "(", "close": ")" },
+ { "open": "#[", "close": "]" },
+ { "open": "#![", "close": "]" },
{ "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "/*", "close": " */" },
{ "open": "`", "close": "`", "notIn": ["string"] }