1
0
Kaynağa Gözat

[fixed] correct comment syntax in the VSCode plugin

Correct some, add line comment with double exclamation marks
ezsh 4 yıl önce
ebeveyn
işleme
9983561b1f

+ 7 - 2
syntax/VSCode/qsrc/syntaxes/QSP.tmLanguage.json

@@ -52,11 +52,16 @@
 		{
 			"name": "comment.block.exclamation.qsp",
 			"begin": "!{",
-			"end": "}!$"
+			"end": "}$"
 		},
 		{
 			"name": "comment.line.exclamation.qsp",
-			"begin": "^!.*",
+			"begin": "^!",
+			"end": "$"
+		},
+		{
+			"name": "comment.line.doubleexclamation.qsp",
+			"begin": "!!",
 			"end": "$"
 		},
 		{