- Merged.

This commit is contained in:
Christian Höltje
2012-10-28 01:25:52 -04:00
committed by Shougo Matsushita
parent 2fde49493b
commit d305dde1cc
2 changed files with 20 additions and 1 deletions

View File

@@ -10,8 +10,17 @@ abbr def end
${2}
end
snippet defrescue
alias defr
abbr def ... rescue ... end
def ${1:method_name}
${2}
rescue ${3:StandardError} => ${4:error}
${5}
end
snippet do
abbr do end
abbr do ... end
do
${1}
end