From b5208c489eb7b8b1ca49db6118cab5b3d3e9a2af Mon Sep 17 00:00:00 2001 From: Feliche-Demian Netliukh <51330172+Demianeen@users.noreply.github.com> Date: Thu, 21 Mar 2024 12:20:20 +0000 Subject: [PATCH] refactor: removed print statements --- lua/lazyvim/plugins/extras/editor/dial.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/lua/lazyvim/plugins/extras/editor/dial.lua b/lua/lazyvim/plugins/extras/editor/dial.lua index 8fc489fe..7a414e29 100644 --- a/lua/lazyvim/plugins/extras/editor/dial.lua +++ b/lua/lazyvim/plugins/extras/editor/dial.lua @@ -192,7 +192,6 @@ return { for _, pattern in ipairs(patterns) do vim.notify(pattern .. " in " .. vim.inspect(patterns) .. ". Current filetype: " .. vim.bo.filetype) if vim.bo.filetype == pattern then - print("Use", lang, "mappings") set_dial_group(lang) return end @@ -201,6 +200,5 @@ return { -- if we haven't returned from function that means that we are in filetype without mappings set_dial_group("default") - print("No language found for current file. Use default dial mappings") end, }