Added ${2: !v g:snips_author} to snippet 'class'

The php.snippet was changed on line 219 to:
"@author ${2:`!v g:snips_author`}", to insert author name for php classes.
This commit is contained in:
Loknan Nanyak 2013-11-27 15:18:18 +01:00
parent 4b91492280
commit 6012a2d914

View File

@ -216,7 +216,7 @@ endsnippet
snippet class "Class declaration template" !b
/**
* Class ${1:`!p snip.rv=snip.fn.split('.')[0]`}
* @author $2
* @author ${2:`!v g:snips_author`}
*/
class $1
{