mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 13:13:03 +00:00
14 lines
240 B
Plaintext
14 lines
240 B
Plaintext
#name : foo { ... } ; setFoo { ... }
|
|
# --
|
|
- ${1:id} ${2:foo and its ${3:nested} shit}
|
|
{
|
|
return $2;
|
|
// dont forget we have $3
|
|
}
|
|
|
|
- (void)set${2:$(capitalize text)}:($1)aValue
|
|
{
|
|
[$2 autorelease];
|
|
$2 = [aValue retain];
|
|
}
|
|
$0 |