remove print statement to a nonexistent value

This commit is contained in:
Raigo Jerva 2021-04-14 23:11:42 +03:00
parent 5190f6f9fc
commit 760ba07a77
No known key found for this signature in database
GPG Key ID: 2156679E782853EC

View File

@ -54,7 +54,7 @@ end
M.toggle_quick_menu = function()
if Harpoon_win_id ~= nil and vim.api.nvim_win_is_valid(Harpoon_win_id) then
local global_config = harpoon.get_global_settings()
print(global_config.save_on_menu_quit)
if global_config.save_on_toggle then
require('harpoon.ui').on_menu_save()
end