From eb7fccc55864a976fe7c942c76c8439b29334f0c Mon Sep 17 00:00:00 2001 From: Joey Curtin Date: Sat, 30 Mar 2013 11:08:09 -0400 Subject: [PATCH] added email and github to python.snippte-docs --- snippets/python.snippets | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/snippets/python.snippets b/snippets/python.snippets index 508a51b..9cb2113 100644 --- a/snippets/python.snippets +++ b/snippets/python.snippets @@ -6,11 +6,13 @@ snippet from from ${1:package} import ${2:module} # Module Docstring snippet docs - ''' + """ File: ${1:`Filename('$1.py', 'foo.py')`} - Author: ${2:`g:snips_author`} - Description: ${3} - ''' + Author: `g:snips_author` + Email: `g:snips_email` + Github: `g:snips_github` + Description: ${2} + """ snippet wh while ${1:condition}: ${2:# TODO: write code...}