Skip to content

Commit 2f47af8

Browse files
authored
Merge pull request #47 from alanhoyle/master
Improve VSCode default comment function behavior
2 parents fb7a772 + 9dc625d commit 2f47af8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vscode/language-configuration.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"comments": {
33
// symbol used for single line comment. Remove this entry if your language does not support line comments
4-
"lineComment": "//",
4+
"lineComment": "#",
55
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
6-
"blockComment": [ "/*", "*/" ]
6+
//"blockComment": [ "/*", "*/" ]
77
},
88
// symbols used as brackets
99
"brackets": [
@@ -27,4 +27,4 @@
2727
["\"", "\""],
2828
["'", "'"]
2929
]
30-
}
30+
}

0 commit comments

Comments
 (0)