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} from ${1:package} import ${2:module}
# Module Docstring # Module Docstring
snippet docs snippet docs
''' """
File: ${1:`Filename('$1.py', 'foo.py')`} File: ${1:`Filename('$1.py', 'foo.py')`}
Author: ${2:`g:snips_author`} Author: `g:snips_author`
Description: ${3} Email: `g:snips_email`
''' Github: `g:snips_github`
Description: ${2}
"""
snippet wh snippet wh
while ${1:condition}: while ${1:condition}:
${2:# TODO: write code...} ${2:# TODO: write code...}