fix(code-server): remove string quotes from JS/TS log global snippet

This commit is contained in:
Victor Westerlund 2026-03-22 10:10:22 +01:00
parent 8082236e62
commit 4f2edbb913
Signed by: vlw
GPG key ID: 5DAF14C317AA7719

View file

@ -16,7 +16,7 @@
"scope": "javascript,typescript", "scope": "javascript,typescript",
"prefix": "log", "prefix": "log",
"body": [ "body": [
"console.log(\"$1\");", "console.log($1);",
], ],
"description": "Log output to console" "description": "Log output to console"
} }