Files
jdhao-nvim-config/my_snippets/python.snippets
T
2019-04-27 00:16:43 +08:00

15 lines
273 B
Plaintext

snippet head "Python source file header" b
"""
Description: $1
Author: Jie-dong Hao
Date: `!v strftime("%Y-%m-%d %H:%M:%S%z")`
Update: `!v strftime("%Y-%m-%d %H:%M:%S%z")`
"""
$0
endsnippet
snippet print "Print value of some variable"
print("$1".format($2))
$0
endsnippet