X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/2054dd2d4e8f2fc94f2d5c78c7dbeb5f6a28c440..9132d33abee90d0818186d54792a80431b20386f:/.vim/UltiSnips/python.snippets diff --git a/.vim/UltiSnips/python.snippets b/.vim/UltiSnips/python.snippets new file mode 100644 index 0000000..ecb4e8e --- /dev/null +++ b/.vim/UltiSnips/python.snippets @@ -0,0 +1,10 @@ +snippet #! "My own Python hashbang" b +#!/usr/bin/python3 +# -*- coding: utf-8 -*- +# +# Copyright © ${1:2021} martin f. krafft <${2:m@rtin.kiwi}> +# Released under the ${3:MIT} Licence. +# + +$0 +endsnippet