From e36f458063e00fa7e60eb82f45b2ef0f88abd5c6 Mon Sep 17 00:00:00 2001 From: David JULIEN Date: Tue, 10 Jan 2023 10:24:34 +0100 Subject: [PATCH] [nvim] fix: trim tex snippets --- .config/nvim/after/ftplugin/tex.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/nvim/after/ftplugin/tex.lua b/.config/nvim/after/ftplugin/tex.lua index 39f2bd3..537d757 100644 --- a/.config/nvim/after/ftplugin/tex.lua +++ b/.config/nvim/after/ftplugin/tex.lua @@ -110,7 +110,7 @@ ls.add_snippets("tex", { t({ "}"}), }), s("ii", { - t({ "\\textit{" }), + t({ "\\emph{" }), i(1), t({ "}"}), }), @@ -119,7 +119,7 @@ ls.add_snippets("tex", { i(1), t({ "}"}), }), - s("fsc", { + s("sc", { t({ "\\textsc{" }), i(1), t({ "}"}),