mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 05:23:04 +00:00
12 lines
345 B
Plaintext
12 lines
345 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: I
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: Method: Initialize
|
|
# condition: (and (yas/objc-implementation-p) (not (yas/objc-method-body-p)))
|
|
# --
|
|
+ (void)initialize
|
|
{
|
|
[[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObjectsAndKeys:
|
|
$0@"value", @"key",
|
|
nil]];
|
|
} |