[nvim] fix: no newline after itemize in tex files

This commit is contained in:
David JULIEN 2022-05-19 15:08:44 +02:00
parent 015c7f3936
commit 6bdf71567f
1 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ ls.add_snippets("tex", {
i(1),
t({ "" }),
d(2, rec_ls, {}),
t({ "", "\\end{itemize}", "" }),
t({ "", "\\end{itemize}" }),
}),
s("lsl", {
t({ "\\begin{itemize}[label=" }),
@ -61,7 +61,7 @@ ls.add_snippets("tex", {
i(2),
t({ "" }),
d(3, rec_ls, {}),
t({ "", "\\end{itemize}", "" }),
t({ "", "\\end{itemize}" }),
}),
s("frm", {
t({ "\\begin{" }),
@ -76,7 +76,7 @@ ls.add_snippets("tex", {
i(0),
t({ "", "\\end{" }),
f(copy, 1),
t({ "}", "" }),
t({ "}" }),
}),
s("env", {
t({ "\\begin{" }),