20 lines
241 B
Lua
20 lines
241 B
Lua
dofile(core.snippets)
|
|
|
|
return {
|
|
-- print inspect text
|
|
s("inspect", {
|
|
t("print(vim.inspect("),
|
|
i(0),
|
|
t("))")
|
|
}),
|
|
|
|
-- print inspect text
|
|
s("M", {
|
|
i(1, "M");
|
|
t({ " = {}", "" }),
|
|
i(0),
|
|
t({ "", "return " }),
|
|
r(1)
|
|
})
|
|
}
|