summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/python-mode.statnett/function_docstring
blob: 1f7f35bf4da9bd7d05dcee9b3813d72c2923aebf (plain)
1
2
3
4
5
6
7
8
9
10
# -*- mode: snippet -*-
# name: function_docstring
# key: fd
# group: definitions
# --
def ${1:name}($2):
    \"\"\"$3
    ${2:$(python-args-to-docstring)}
    \"\"\"
    $0