yasnippet/extras/imported/ruby-mode/Serialization/YAML.load(file) (Yl-).yasnippet
2009-08-29 17:59:02 +00:00

6 lines
189 B
Plaintext

# -*- mode: snippet -*-
# key: Yl-
# contributor: Translated from TextMate Snippet
# name: YAML.load(file)
# --
File.open(${1:"${2:path/to/file}.yaml"}) { |${3:file}| YAML.load(${3:file}) }