Skip to content

Commit 73e9b16

Browse files
slapointeStephane Lapointe
andauthored
Auto-close multi-line comments (#2843)
* fix #1463, auto-close multi-line comments * removed unnecessary line return from file * When it's not a line return, it's spaces. Co-authored-by: Stephane Lapointe <[email protected]>
1 parent 705b05c commit 73e9b16

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/vscode-bicep/language-configuration.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
{ "open": "[", "close": "]" },
2121
{ "open": "(", "close": ")" },
2222
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
23-
{ "open": "'''", "close": "'''", "notIn": ["string", "comment"] }
23+
{ "open": "'''", "close": "'''", "notIn": ["string", "comment"] },
24+
{ "open": "/*", "close": "*/", "notIn": ["string", "comment"] }
2425
],
2526
"autoCloseBefore": ":.,=}])' \n\t",
2627
"indentationRules": {

0 commit comments

Comments
 (0)