Merge pull request #188 from jbcurtin/master

Added email and github to python.snippte-docs
This commit is contained in:
Honza Pokorny 2013-04-01 05:30:38 -07:00
commit cb35207e7d

View File

@ -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...}