Vim dotfiles

This commit is contained in:
2018-08-23 16:41:22 +02:00
parent 8343fe1a9c
commit 63b994861c
7 changed files with 362 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
snippet todo "A python todo mark" b
# TODO: ${1:desc} |`date`
endsnippet
snippet tvar "testing a variable" b
print("${1:Varname} -> ", $1)
endsnippet
# Unittest
snippet deftest "test function without docstrings" b
def test_${1:function}(`!p
if snip.indent:
snip.rv = 'self' `):
${0:pass}
endsnippet