about summary refs log tree commit diff
path: root/meta/jinx-language-syntax/language-configuration.json
diff options
context:
space:
mode:
Diffstat (limited to 'meta/jinx-language-syntax/language-configuration.json')
-rw-r--r--meta/jinx-language-syntax/language-configuration.json58
1 files changed, 58 insertions, 0 deletions
diff --git a/meta/jinx-language-syntax/language-configuration.json b/meta/jinx-language-syntax/language-configuration.json
new file mode 100644
index 0000000..b04c308
--- /dev/null
+++ b/meta/jinx-language-syntax/language-configuration.json
@@ -0,0 +1,58 @@
+{
+	"comments": {
+		"lineComment": "#",
+	},
+	"brackets": [
+		[
+			"{",
+			"}"
+		],
+		[
+			"[",
+			"]"
+		],
+		[
+			"(",
+			")"
+		]
+	],
+	"autoClosingPairs": [
+		[
+			"{",
+			"}"
+		],
+		[
+			"[",
+			"]"
+		],
+		[
+			"(",
+			")"
+		],
+		{
+			"open": "\"",
+			"close": "\"",
+			"notIn": [
+				"string"
+			]
+		}
+	],
+	"surroundingPairs": [
+		[
+			"{",
+			"}"
+		],
+		[
+			"[",
+			"]"
+		],
+		[
+			"(",
+			")"
+		],
+		[
+			"\"",
+			"\""
+		]
+	]
+}
\ No newline at end of file