Skip to content

Commit

Permalink
fix(extension): Fix lazy.nvim extension, breaking change upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Oct 17, 2023
1 parent be1de69 commit 1190de4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/legendary/extensions/lazy_nvim.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ return function()

local LazyNvimConfig = require('lazy.core.config')
local Handler = require('lazy.core.handler')
local Plugin = require('lazy.core.plugin')
for _, plugin in pairs(LazyNvimConfig.plugins) do
local keys = Handler.handlers.keys:values(plugin)
local keys = Handler.handlers.keys:_values(Plugin.values(plugin, 'keys', true), plugin)
for _, keymap in pairs(keys) do
if keymap.desc and #keymap.desc > 0 then
-- we don't need the implementation, since
Expand Down

0 comments on commit 1190de4

Please sign in to comment.