Merge pull request #439 from augensalat/master

Bug fix: replace space indention by tab
This commit is contained in:
Holger Rapp 2014-09-07 13:09:57 -07:00
commit e3c2931bef
2 changed files with 12 additions and 5 deletions

View File

@ -129,4 +129,11 @@ while ($1) {
endsnippet
snippet until "until"
until ($1) {
${2:# body...}
}
endsnippet
# vim:ft=snippets:

View File

@ -350,10 +350,10 @@ snippet debug_trace
};
snippet dump
use Data::Dump qw(dump);
warn dump ${1:variable}
use Data::Dump qw(dump);
warn dump ${1:variable}
snippet subtest
subtest '${1: test_name}' => sub {
${2}
};
subtest '${1: test_name}' => sub {
${2}
};