Skip to content

Commit fc8b56a

Browse files
authored
Update logging
Remove enter after console.log/warn/error. Really ennoying...
1 parent 9c142ea commit fc8b56a

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

extensions/javascript/snippets/javascript.code-snippets

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,24 +173,21 @@
173173
"Log to the console": {
174174
"prefix": "log",
175175
"body": [
176-
"console.log($1);",
177-
"$0"
176+
"console.log($1);"
178177
],
179178
"description": "Log to the console"
180179
},
181180
"Log warning to console": {
182181
"prefix": "warn",
183182
"body": [
184183
"console.warn($1);",
185-
"$0"
186184
],
187185
"description": "Log warning to the console"
188186
},
189187
"Log error to console": {
190188
"prefix": "error",
191189
"body": [
192190
"console.error($1);",
193-
"$0"
194191
],
195192
"description": "Log error to the console"
196193
}

0 commit comments

Comments
 (0)