blob: add148fab364c42c532f6113a1ebac9d798195cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
<?xml version="1.0" encoding="UTF-8"?>
<snippets language="Perl">
<snippet id="perl">
<text><![CDATA[#!/usr/bin/perl
$0]]></text>
<tag>perl</tag>
<description>#!/usr/bin/perl</description>
</snippet>
<snippet id="ife">
<text><![CDATA[if ($1) {
${2:# body...}
} else {
${3:# else...}
}
]]></text>
<description>Conditional if..else</description>
<tag>ife</tag>
</snippet>
<snippet id="ifee">
<text><![CDATA[if ($1) {
${2:# body...}
} elsif ($3) {
${4:# elsif...}
} else {
${5:# else...}
}
]]></text>
<description>Conditional if..elsif..else</description>
<tag>ifee</tag>
</snippet>
<snippet id="xunless">
<text><![CDATA[${1:expression} unless ${2:condition};
]]></text>
<description>Conditional one-line</description>
<tag>xunless</tag>
</snippet>
<snippet id="xif">
<text><![CDATA[${1:expression} if ${2:condition};
]]></text>
<description>Conditional one-line</description>
<tag>xif</tag>
</snippet>
<snippet id="eval">
<text><![CDATA[eval {
${1:# do something risky...}
};
if ($@) {
${2:# handle failure...}
}
]]></text>
<description>Try/Except</description>
<tag>eval</tag>
</snippet>
<snippet id="fore">
<text><![CDATA[foreach ${1:my $${2:x} }(@${3:array}) {
${4:# body...}
}
]]></text>
<description>Loop</description>
<tag>fore</tag>
</snippet>
<snippet id="for">
<text><![CDATA[for (my $${1:var} = 0; $$1 < ${2:expression}; $$1++) {
${3:# body...}
}
]]></text>
<description>Loop</description>
<tag>for</tag>
</snippet>
<snippet id="sub">
<text><![CDATA[sub ${1:function_name} {
${2:# body...}
}
]]></text>
<description>Function</description>
<tag>sub</tag>
</snippet>
<snippet id="hashpointer">
<text><![CDATA[ => ]]></text>
<accelerator><![CDATA[<Shift><Alt>l]]></accelerator>
<description>hash pointer</description>
</snippet>
<snippet id="if">
<text><![CDATA[if ($1) {
${2:# body...}
}
]]></text>
<description>Conditional</description>
<tag>if</tag>
</snippet>
<snippet id="xfore">
<text><![CDATA[${1:expression} foreach @${2:array};
]]></text>
<description>Loop one-line</description>
<tag>xfore</tag>
</snippet>
<snippet id="xwhile">
<text><![CDATA[${1:expression} while ${2:condition};
]]></text>
<description>Loop one-line</description>
<tag>xwhile</tag>
</snippet>
<snippet id="slurp">
<text><![CDATA[my $${1:var};
{ local $/ = undef; local *FILE; open FILE, "<${2:file}"; $$1 = <FILE>; close FILE }
]]></text>
<description>Read File</description>
<tag>slurp</tag>
</snippet>
<snippet id="unless">
<text><![CDATA[unless ($1) {
${2:# body...}
}
]]></text>
<description>Conditional</description>
<tag>unless</tag>
</snippet>
<snippet id="while">
<text><![CDATA[while ($1) {
${2:# body...}
}
]]></text>
<description>Loop</description>
<tag>while</tag>
</snippet>
</snippets>
|