Created
July 19, 2013 13:55
-
-
Save mattupstate/6039273 to your computer and use it in GitHub Desktop.
A simple Python module header snippet for Sublime Text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<tabTrigger>module</tabTrigger> | |
<scope>source.python</scope> | |
<description>Module</description> | |
<content><![CDATA[# -*- coding: utf-8 -*- | |
""" | |
${1:name} | |
${1/./~/g} | |
${2:description} | |
"""]]></content> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment