commit 60acc2b95e2292c1de30d338dfdf0e55c454a72e
parent e5dae2876fca97080120908985e27f61e0b3b936
Author: Thomas Vigouroux <me@vigoux.eu>
Date: Thu, 7 Mar 2024 14:09:34 +0100
perf: remove dumb print
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/after/ftplugin/tex.lua b/after/ftplugin/tex.lua
@@ -215,7 +215,6 @@ local function output_ask(prompt, leftfmt, rightfmt)
local name = surround.user_input(prompt)
if not name then return end
local ret = { left = string.format(leftfmt, name), right = string.format(rightfmt, name) }
- vim.print(leftfmt, rightfmt, ret)
return ret
end
end