about summary refs log tree commit diff
path: root/meta/jinx-language-syntax/language-configuration.json
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2022-12-18 01:06:40 +0100
committerMel <einebeere@gmail.com>2022-12-18 01:06:40 +0100
commita43f374ffed8ab5d64acd122702826c9c41b8954 (patch)
tree4c6aa2d3dbfaad7ef8133d8bc40e12b3047c2126 /meta/jinx-language-syntax/language-configuration.json
parent00adb146a20d2985fd014c92b9d5cc07e0ab09b9 (diff)
downloadjinx-a43f374ffed8ab5d64acd122702826c9c41b8954.tar.zst
jinx-a43f374ffed8ab5d64acd122702826c9c41b8954.zip
Add Jinx Lang VSCode Syntax Extension
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