]> git.huck.website - nvim.git/commitdiff
dont need print statements in autocommand
authorHuck Boles <huck@huck.website>
Tue, 25 Apr 2023 19:51:50 +0000 (14:51 -0500)
committerHuck Boles <huck@huck.website>
Tue, 25 Apr 2023 19:51:50 +0000 (14:51 -0500)
lua/functions.lua

index f6e81c930b2c8c4478f944b3cc1328f871ce40f9..7ab465fdc1f021af00c71fd45046012694b0768e 100644 (file)
@@ -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