From 5aeaed93ced48547e3687d742d2d8039ab1258ed Mon Sep 17 00:00:00 2001 From: Huck Boles Date: Tue, 25 Apr 2023 14:51:50 -0500 Subject: [PATCH] dont need print statements in autocommand --- lua/functions.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/lua/functions.lua b/lua/functions.lua index f6e81c9..7ab465f 100644 --- a/lua/functions.lua +++ b/lua/functions.lua @@ -16,8 +16,6 @@ vim.api.nvim_create_autocmd("BufNewFile", { local copy = function(name) local path = dir .. name .. ext - print(path) - print(ext) if vim.fn.filereadable(path) == 1 then vim.cmd('0r ' .. path) end -- 2.44.2