From 827755ad89b805a9b2fa4910a57195aa2ec2e6a3 Mon Sep 17 00:00:00 2001 From: William Travis Holton Date: Sun, 11 Mar 2012 08:58:12 +1300 Subject: [PATCH] subroutine pod snippet with "=cut" For when someone wants to put the pod next to the subroutine definition --- snippets/perl.snippets | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/snippets/perl.snippets b/snippets/perl.snippets index 25b12a1..9c40051 100644 --- a/snippets/perl.snippets +++ b/snippets/perl.snippets @@ -215,6 +215,15 @@ snippet psub ${2:Summary....} +# Heading for inline subroutine pod +snippet psubi + =head2 ${1:MethodName} + + ${2:Summary...} + + + =cut + # Subroutine signature snippet parg