From 04b34330ee524a26b4c4aa567abb78446c0b52c1 Mon Sep 17 00:00:00 2001 From: Bernhard Graf Date: Sun, 7 Sep 2014 15:05:37 +0200 Subject: [PATCH] add snippet for until --- UltiSnips/perl.snippets | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/UltiSnips/perl.snippets b/UltiSnips/perl.snippets index abaae3f..67c7f27 100644 --- a/UltiSnips/perl.snippets +++ b/UltiSnips/perl.snippets @@ -129,4 +129,11 @@ while ($1) { endsnippet +snippet until "until" +until ($1) { + ${2:# body...} +} + +endsnippet + # vim:ft=snippets: