Initial commit.
This commit is contained in:
2
vim/snippets/python/class/basic.snippet
Executable file
2
vim/snippets/python/class/basic.snippet
Executable file
@@ -0,0 +1,2 @@
|
||||
class ${1:`Snippet_PythonClassNameFromFilename()`}(${2:data}):
|
||||
${3}
|
||||
1
vim/snippets/python/class/exception.snippet
Executable file
1
vim/snippets/python/class/exception.snippet
Executable file
@@ -0,0 +1 @@
|
||||
class ${1:ExceptionName}(${2:Exception}): pass
|
||||
3
vim/snippets/python/class/with_init.snippet
Executable file
3
vim/snippets/python/class/with_init.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
class ${1:`Snippet_PythonClassNameFromFilename()`}(${2:data}):
|
||||
def __init__(self, ${3:args}):
|
||||
${4}
|
||||
Reference in New Issue
Block a user