From ae6cf660f8b5f694cce353e461cd823ccc128cd1 Mon Sep 17 00:00:00 2001 From: Andy Jordan Date: Wed, 7 Dec 2022 10:43:24 -0800 Subject: [PATCH] Fix `try-catch` snippet (missing a `$`) --- snippets/PowerShell.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/PowerShell.json b/snippets/PowerShell.json index fbc7bedecb..94e558a803 100644 --- a/snippets/PowerShell.json +++ b/snippets/PowerShell.json @@ -606,7 +606,7 @@ "\t${0:$TM_SELECTED_TEXT}", "}", "catch {", - "\t{1:<#Do this if a terminating exception happens#>}", + "\t${1:<#Do this if a terminating exception happens#>}", "}" ] },