diff options
author | Preston Pan <preston@nullring.xyz> | 2024-06-28 21:30:42 -0700 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2024-06-28 21:30:42 -0700 |
commit | e7dd5245c35d2794f59bcf700a6a92009ec8c478 (patch) | |
tree | 0d0e81552f0426f8b715bd5bd3bdd0856058db2c /yasnippet/python-mode | |
parent | 01ba01763b81a838dcbac4c08243804e068495b9 (diff) |
stuff
Diffstat (limited to 'yasnippet/python-mode')
-rw-r--r-- | yasnippet/python-mode/namemain | 6 | ||||
-rw-r--r-- | yasnippet/python-mode/pclass | 8 |
2 files changed, 14 insertions, 0 deletions
diff --git a/yasnippet/python-mode/namemain b/yasnippet/python-mode/namemain new file mode 100644 index 0000000..870114c --- /dev/null +++ b/yasnippet/python-mode/namemain @@ -0,0 +1,6 @@ +# -*- mode: snippet -*- +# name: namemain +# key: namemain +# -- +if __name__ == "__main__": + $0
\ No newline at end of file diff --git a/yasnippet/python-mode/pclass b/yasnippet/python-mode/pclass new file mode 100644 index 0000000..1e6b8f7 --- /dev/null +++ b/yasnippet/python-mode/pclass @@ -0,0 +1,8 @@ +# -*- mode: snippet -*- +# name: pclass +# key: pclass +# -- + +class $1: + def __init__(self$2): + $0 |