We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb1515f commit daef966Copy full SHA for daef966
snippets/PowerShell.json
@@ -533,6 +533,27 @@
533
],
534
"description": "Script cmdlet definition snippet"
535
},
536
+ "Function-Advanced": {
537
+ "prefix": "function-advanced",
538
+ "body": [
539
+ "function ${1:Verb-Noun} {",
540
+ "\t[CmdletBinding()]",
541
+ "\tparam (",
542
+ "\t\t$0",
543
+ "\t)",
544
+ "\t",
545
+ "\tbegin {",
546
+ "\t}",
547
548
+ "\tprocess {",
549
550
551
+ "\tend {",
552
553
+ "}"
554
+ ],
555
+ "description": "Script advanced function definition snippet"
556
+ },
557
"Cmdlet-Comment-Help": {
558
"prefix": "comment-help",
559
"body": [
0 commit comments