From 8fb3ebc283f25b787b0c776dc2dc7efcf73f100f Mon Sep 17 00:00:00 2001 From: Katinka Tauber <72247962+katauber@users.noreply.github.com> Date: Fri, 10 Nov 2023 13:32:38 +0100 Subject: [PATCH] Replace "," with ":" in extension snippet Co-authored-by: Jens Wille --- metafix-vsc/fix.snippets.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metafix-vsc/fix.snippets.json b/metafix-vsc/fix.snippets.json index 19da0c4cb..1c488d5f1 100644 --- a/metafix-vsc/fix.snippets.json +++ b/metafix-vsc/fix.snippets.json @@ -6,7 +6,7 @@ }, "do list_as": { "prefix": ["do list_as"], - "body": ["do list_as(\"${1:}\", \"${2:}\")", "\t${0:body}", "end"], + "body": ["do list_as(\"${1:}\": \"${2:}\")", "\t${0:body}", "end"], "description": "Iterates over each named element of an array (like do list with a variable name). If multiple arrays are given, iterates over the corresponding elements from each array (i.e., all elements with the same array index, skipping elements whose arrays have already been exhausted)." }, "do once": {