mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 03:00:06 +08:00
14 lines
220 B
Plaintext
Vendored
14 lines
220 B
Plaintext
Vendored
priority -50
|
|
|
|
snippet "\b(de)?f" "def <name>..." r
|
|
def ${1:method_name}${2:(${3:*args})}
|
|
$0
|
|
end
|
|
endsnippet
|
|
|
|
snippet "\b(pde)?f" "private def <name>..." r
|
|
private def ${1:method_name}${2:(${3:*args})}
|
|
$0
|
|
end
|
|
endsnippet
|