mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
7 lines
403 B
Plaintext
7 lines
403 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: prop
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: Property (Objective-C 2.0)
|
|
## condition: "source.objc meta.scope.interface, source.objc++ meta.scope.interface"
|
|
# --
|
|
@property (${1/^(e)$|.*/(?1:r)/}${1:r}${1/^(?:(r)|(e)|(c)|(a))$|.*/(?1:etain)(?2:adonly)(?3:opy)(?4:ssign)/}) ${2:NSSomeClass}${TM_C_POINTER: *}${3:${2/^[A-Z](?:[A-Z]+|[a-z]+)([A-Z]\w*)/\l$1/}}; |