Joao Tavora 6ce6b24f52 fix: replace 'text' in 'yas-text' in bundled snippets
The previous commit broke these snippets by enabling
2013-08-30 17:13:02 +01:00

14 lines
198 B
Plaintext

# name: foo { ... } ; setFoo { ... }
# key: prop
# --
- (${1:id})${2:foo}
{
return $2;
}
- (void)set${2:$(capitalize yas-text)}:($1)aValue
{
[$2 autorelease];
$2 = [aValue retain];
}
$0