mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 13:13:03 +00:00
12 lines
372 B
Plaintext
12 lines
372 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: I
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: Method: Initialize
|
|
## condition: "(source.objc | source.objc++) & meta.scope.implementation.objc - meta.function-with-body"
|
|
# --
|
|
+ (void)initialize
|
|
{
|
|
[[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObjectsAndKeys:
|
|
$0@"value", @"key",
|
|
nil]];
|
|
} |