yasnippet-snippets/snippets/ruby-mode/forin
2019-03-09 18:35:58 +00:00

7 lines
No EOL
133 B
Text

# -*- mode: snippet -*-
# name: for ... in ...; ... end
# group : control structure
# --
for ${1:element} in ${2:collection}
$0
end