mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
10 lines
292 B
Plaintext
10 lines
292 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: opt
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: option(..)
|
|
## condition: "source.ruby"
|
|
# --
|
|
opts.on( "-${1:o}", "--${2:long-option-name}"${3:$(if (string= yas/text "") "" ", ")}${3:String},
|
|
"${4:Option description.}" ) do |${6:opt}|
|
|
$0
|
|
end |