From 1a904f04a4db1c1c5c3039340f9a33256ff9bce2 Mon Sep 17 00:00:00 2001 From: Aliwoto Date: Sun, 25 Dec 2022 21:31:11 +0330 Subject: [PATCH 1/2] fix class snippet (unnecessary space between < and #) Signed-off-by: Aliwoto --- snippets/PowerShell.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/PowerShell.json b/snippets/PowerShell.json index 94e558a803..1b3d2a2dc5 100644 --- a/snippets/PowerShell.json +++ b/snippets/PowerShell.json @@ -33,7 +33,7 @@ "description": "A blueprint used to create instances of objects at run time. More: Get-Help about_Classes", "body": [ "class ${1:ClassName} {", - "\t${0:${TM_SELECTED_TEXT:< #Define the class. Try constructors, properties, or methods #>}}", + "\t${0:${TM_SELECTED_TEXT:<#Define the class. Try constructors, properties, or methods #>}}", "}" ] }, From 17b29d56b3ac1ebb08099d747d3fe51340116418 Mon Sep 17 00:00:00 2001 From: Andy Jordan <2226434+andschwa@users.noreply.github.com> Date: Tue, 3 Jan 2023 10:20:50 -0800 Subject: [PATCH 2/2] Add spaces around sentence --- snippets/PowerShell.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/PowerShell.json b/snippets/PowerShell.json index 1b3d2a2dc5..ea576e4f9b 100644 --- a/snippets/PowerShell.json +++ b/snippets/PowerShell.json @@ -33,7 +33,7 @@ "description": "A blueprint used to create instances of objects at run time. More: Get-Help about_Classes", "body": [ "class ${1:ClassName} {", - "\t${0:${TM_SELECTED_TEXT:<#Define the class. Try constructors, properties, or methods #>}}", + "\t${0:${TM_SELECTED_TEXT:<# Define the class. Try constructors, properties, or methods. #>}}", "}" ] },