這裏是我的片斷:vim和snipmate /片段:如何創建自定義行爲
# Get repository of a table:
snippet repo
$$2 = $this->getRepository('${1:Bundle}:${2:TableName}')
${3}
當我使用它,這裏就是它可能生成:
$Person = $this->getRepository('MyBundle:Person')
$Address = $this->getRepository('MyBundle:Address')
我想第一個小寫字母,總是小寫字母,並給我類似的東西:
$person = $this->getRepository('MyBundle:Person')
$address = $this->getRepository('MyBundle:Address')
...
。有沒有辦法與snipmate做到這一點?
我正在尋找遞歸片段(snippet中的片段)。非常感謝這些信息。 – 2013-02-10 20:15:32