Skip to content

Instantly share code, notes, and snippets.

@bobhancockgist
Created April 30, 2013 20:32
Show Gist options
  • Select an option

  • Save bobhancockgist/5491720 to your computer and use it in GitHub Desktop.

Select an option

Save bobhancockgist/5491720 to your computer and use it in GitHub Desktop.

Revisions

  1. bobhancockgist created this gist Apr 30, 2013.
    23 changes: 23 additions & 0 deletions docstringmodule.sublime-snippet
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    <snippet>
    <content><![CDATA[
    """
    Module: $1
    Description: $2
    Minimum Python Required: $3
    Changelog:
    YYYY-MM-DD Programmer Description
    ---------- ---------- -----------
    """
    __author__ = "$4"
    __version__ = "$5"
    ]]></content>
    <tabTrigger>docmodule</tabTrigger>
    <scope>source.python</scope>
    <description>Module docstring</description>
    </snippet>