aboutsummaryrefslogtreecommitdiff
path: root/language-configuration.json
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2019-02-05 22:01:25 +0100
committerBen Beltran <ben@nsovocal.com>2019-02-05 22:01:25 +0100
commite6c2e653ab8ad7d115d29a407c99aaecb179adb1 (patch)
treeb9f0bb708df0482c6c665ea318205eb4cacf9ed5 /language-configuration.json
parent4549164147a331c583651f87d3d0490eb0a0397f (diff)
Import from api-notation.tmLanguage
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