mirror of https://github.com/folke/lazy.nvim.git
fix(ui): fixed keymaps in debug view
This commit is contained in:
parent
3049575bd8
commit
fb9795e49f
|
@ -682,7 +682,6 @@ function M:debug()
|
||||||
|
|
||||||
Util.foreach(require("lazy.core.handler").handlers, function(handler_type, handler)
|
Util.foreach(require("lazy.core.handler").handlers, function(handler_type, handler)
|
||||||
Util.foreach(handler.active, function(value, plugins)
|
Util.foreach(handler.active, function(value, plugins)
|
||||||
assert(type(value) == "string")
|
|
||||||
if not vim.tbl_isempty(plugins) then
|
if not vim.tbl_isempty(plugins) then
|
||||||
---@type string[]
|
---@type string[]
|
||||||
plugins = vim.tbl_values(plugins)
|
plugins = vim.tbl_values(plugins)
|
||||||
|
@ -691,7 +690,7 @@ function M:debug()
|
||||||
if handler_type == "keys" then
|
if handler_type == "keys" then
|
||||||
for k, v in pairs(Config.plugins[plugins[1]]._.handlers.keys) do
|
for k, v in pairs(Config.plugins[plugins[1]]._.handlers.keys) do
|
||||||
if k == value then
|
if k == value then
|
||||||
value = v.name
|
value = Keys.to_string(v)
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue