nixos-config/modules/development/snippets/python-mode/class
Charlotte Van Petegem 6b66263d7d
Setup yasnippet
Don't add yasnippet-snippets; hopefully most of the snippets will come from
language servers.

Also make sure that company-yasnippet is available, to make sure that snippets
are at least somewhat discoverable.
2023-02-24 15:57:45 +01:00

14 lines
193 B
Text

# -*- mode: snippet -*-
# name: new class
# key: class
# --
class $1:
"""
$2
"""
def __init__(self${3:, *args, **kwargs}):
"""
$4
"""
${0:pass}