diff options
Diffstat (limited to '.emacs.d/mysnippets/text-mode/cc-mode/objc-mode')
| -rw-r--r-- | .emacs.d/mysnippets/text-mode/cc-mode/objc-mode/prop | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.emacs.d/mysnippets/text-mode/cc-mode/objc-mode/prop b/.emacs.d/mysnippets/text-mode/cc-mode/objc-mode/prop new file mode 100644 index 0000000..4d585db --- /dev/null +++ b/.emacs.d/mysnippets/text-mode/cc-mode/objc-mode/prop | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #name : foo { ... } ; setFoo { ... } | ||
| 2 | # -- | ||
| 3 | - (${1:id})${2:foo} | ||
| 4 | { | ||
| 5 | return $2; | ||
| 6 | } | ||
| 7 | |||
| 8 | - (void)set${2:$(capitalize text)}:($1)aValue | ||
| 9 | { | ||
| 10 | [$2 autorelease]; | ||
| 11 | $2 = [aValue retain]; | ||
| 12 | } | ||
| 13 | $0 \ No newline at end of file | ||
