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

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/129
This commit is contained in:
Victor Westerlund 2026-03-22 10:11:27 +01:00
parent d65c3b5121
commit cf7792393c

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"
} }