mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
12 lines
313 B
Plaintext
12 lines
313 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: cla
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: class .. initialize .. end
|
|
## condition: "source.ruby"
|
|
# --
|
|
class ${1:`(yas/ruby-infer-class-name)`}
|
|
def initialize${2:$(if (string= yas/text "") "" "(")}${2:args}${2:$(if (string= yas/text "") "" ")")}
|
|
$0
|
|
end
|
|
end
|