From c21bf836a8f7ea4db25611c6980798215ab67ec6 Mon Sep 17 00:00:00 2001 From: Matei Adriel Date: Tue, 19 Sep 2023 15:07:45 +0300 Subject: [PATCH] Remove accidental debug print --- dotfiles/neovim/ftplugin/tex.lua | 9 --------- 1 file changed, 9 deletions(-) diff --git a/dotfiles/neovim/ftplugin/tex.lua b/dotfiles/neovim/ftplugin/tex.lua index 63cb327..db77326 100644 --- a/dotfiles/neovim/ftplugin/tex.lua +++ b/dotfiles/neovim/ftplugin/tex.lua @@ -240,15 +240,6 @@ local expanded = scrap.expand_many(abolishAbbreviations) -- Last I checked this contained 1179 abbreviations -- print(#abbreviations + #expanded) -local all = "" -for _, v in pairs(abbreviations) do - all = all .. v[1] .. " " .. v[2] .. "\n" -end -for _, v in pairs(expanded) do - all = all .. v[1] .. " " .. v[2] .. "\n" -end -print(all) - A.manyLocalAbbr(abbreviations) A.manyLocalAbbr(expanded)