From 6012a2d9145feeb1afc1988674623a3246ff49e9 Mon Sep 17 00:00:00 2001 From: Loknan Nanyak Date: Wed, 27 Nov 2013 15:18:18 +0100 Subject: [PATCH] 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. --- UltiSnips/php.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UltiSnips/php.snippets b/UltiSnips/php.snippets index 01cd0ae..9e48930 100644 --- a/UltiSnips/php.snippets +++ b/UltiSnips/php.snippets @@ -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 {