diff --git a/snippets/PowerShell.json b/snippets/PowerShell.json index 6707fcfb8b..b98472f56b 100644 --- a/snippets/PowerShell.json +++ b/snippets/PowerShell.json @@ -571,6 +571,17 @@ ], "description": "Parameter declaration snippet" }, + "Parameter_Block" : { + "prefix": "param-block", + "body": ["[CmdletBinding()]", + "param (", + " [Parameter()]", + " [${1:TypeName}]", + " $${2:ParameterName}$0", + ")" + ], + "description": "A Parameter block to get you started." + }, "Parameter-Path": { "prefix": "parameter-path", "body": [