aboutsummaryrefslogtreecommitdiff
path: root/UltiSnips/python.snippets
blob: 65be5b1e233981ef0e67e3936dfc3206e65c2244 (plain)
1
2
3
4
5
6
7
8
snippet "" "Comments but same line" b
""" $1 """
endsnippet

snippet de "Make a very basic function" b
def ${1:function}($2):
	${3:pass}
endsnippet