mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-15 22:13:04 +00:00
6 lines
208 B
Plaintext
6 lines
208 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: Yd-
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: YAML.dump(.., file)
|
|
# --
|
|
File.open(${1:"${2:path/to/file}.yaml"}, "w") { |${3:file}| YAML.dump(${4:obj}, ${3:file}) } |