Renewed emacs installation

This commit is contained in:
TuDatTr
2017-12-21 01:42:57 +01:00
parent 8cd528b73e
commit ab13b5e4d2
236 changed files with 27866 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
# -*- mode: snippet -*-
# name: class(parent): ...
# key: class
# group: Definitions
# --
class ${1:ClassName}(${2:object}):
"""${3:Documentation for $1}
"""
def __init__(self${4:, args}):
super($1, self).__init__($5)
${4:$(elpy-snippet-init-assignments yas-text)}
$0