diff options
author | Cody Hiar <chiar@hybridforge.com> | 2015-08-12 11:51:04 -0600 |
---|---|---|
committer | Cody Hiar <chiar@hybridforge.com> | 2015-08-12 11:51:04 -0600 |
commit | 72d653e1e0cffe2e48bd7a393acf08c96d6db50a (patch) | |
tree | 6c870fd1fa4737103fe728b1438c27ac6863fc75 /UltiSnips/python.snippets |
Inidiat commit of working files
Diffstat (limited to 'UltiSnips/python.snippets')
-rw-r--r-- | UltiSnips/python.snippets | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/UltiSnips/python.snippets b/UltiSnips/python.snippets new file mode 100644 index 0000000..65be5b1 --- /dev/null +++ b/UltiSnips/python.snippets @@ -0,0 +1,8 @@ +snippet "" "Comments but same line" b +""" $1 """ +endsnippet + +snippet de "Make a very basic function" b +def ${1:function}($2): + ${3:pass} +endsnippet |