Improve ruby snippets.

This commit is contained in:
ujihisa 2013-12-29 19:46:11 -08:00
parent 0b6184aea1
commit f82c5e1edf
1 changed files with 10 additions and 0 deletions

View File

@ -134,3 +134,13 @@ options head
Dir.glob(${1:'**/*'}) do |fname|
${0:TARGET}
end
snippet case
abbr case ... when ... else ... end
options head
case ${1}
when ${2}
${3}
else
${4}
end