20 lines
512 B
Lua
20 lines
512 B
Lua
-- https://github.com/L3MON4D3/LuaSnip/wiki/Cool-Snippets#endless-list
|
|
local rec_ls
|
|
rec_ls = function()
|
|
return sn(nil, {
|
|
c(1, {
|
|
-- important!! Having the sn(...) as the first choice will cause infinite recursion.
|
|
t({""}),
|
|
-- The same dynamicNode as in the snippet (also note: self reference).
|
|
sn(nil, {t({"", "\t\\item "}), i(1), d(2, rec_ls, {})}),
|
|
}),
|
|
});
|
|
end
|
|
|
|
return {
|
|
s(";endlessitem", {
|
|
t({"\\begin{itemize}",
|
|
"\t\\item "}), i(1), d(2, rec_ls, {}),
|
|
t({"", "\\end{itemize}"}), i(0)
|
|
})
|
|
}
|