feat(nvim): add python snippets
parent
96697c684c
commit
a14f999ab9
|
@ -183,6 +183,51 @@ local dot_try = postfix(".try", {
|
||||||
end),
|
end),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
local parr = s(
|
||||||
|
"parr",
|
||||||
|
fmt(
|
||||||
|
[[
|
||||||
|
:param {name}: {description}
|
||||||
|
:type {name}: {type}
|
||||||
|
]],
|
||||||
|
{
|
||||||
|
name = i(1, "name"),
|
||||||
|
description = i(2, "description"),
|
||||||
|
type = i(3, "type"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
repeat_duplicates = true,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
local retr = s(
|
||||||
|
"retr",
|
||||||
|
fmt(
|
||||||
|
[[
|
||||||
|
:return: {description}
|
||||||
|
:rtype: {rtype}
|
||||||
|
]],
|
||||||
|
{
|
||||||
|
description = i(1, "description"),
|
||||||
|
rtype = i(2, "rtype"),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
local raisr = s(
|
||||||
|
"raisr",
|
||||||
|
fmt(
|
||||||
|
[[
|
||||||
|
:raises {exception}: {description}
|
||||||
|
]],
|
||||||
|
{
|
||||||
|
exception = i(1, "Exception"),
|
||||||
|
description = i(2, "description"),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
def,
|
def,
|
||||||
defs,
|
defs,
|
||||||
|
@ -191,4 +236,7 @@ return {
|
||||||
dot_items,
|
dot_items,
|
||||||
dot_try,
|
dot_try,
|
||||||
enum,
|
enum,
|
||||||
|
parr,
|
||||||
|
retr,
|
||||||
|
raisr,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue