Skip to content

Commit

Permalink
chore: remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Oct 9, 2023
1 parent 671b427 commit 86c685a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lua/legendary/integrations/lazy-nvim.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ function M.load_lazy_nvim_keys()
local Handler = require('lazy.core.handler')
for _, plugin in pairs(LazyNvimConfig.plugins) do
local keys = Handler.handlers.keys:values(plugin)
for lhs, keymap in pairs(keys) do
print(vim.inspect({ lhs, keymap }))
for _, keymap in pairs(keys) do
if keymap.desc and #keymap.desc > 0 then
-- we don't need the implementation, since
-- lazy.nvim will have already bound it. We
Expand Down

0 comments on commit 86c685a

Please sign in to comment.