We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3049575 commit fb9795eCopy full SHA for fb9795e
lua/lazy/view/render.lua
@@ -682,7 +682,6 @@ function M:debug()
682
683
Util.foreach(require("lazy.core.handler").handlers, function(handler_type, handler)
684
Util.foreach(handler.active, function(value, plugins)
685
- assert(type(value) == "string")
686
if not vim.tbl_isempty(plugins) then
687
---@type string[]
688
plugins = vim.tbl_values(plugins)
@@ -691,7 +690,7 @@ function M:debug()
691
690
if handler_type == "keys" then
692
for k, v in pairs(Config.plugins[plugins[1]]._.handlers.keys) do
693
if k == value then
694
- value = v.name
+ value = Keys.to_string(v)
695
break
696
end
697
0 commit comments