mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-05 23:36:35 +00:00
fix(keys): dont add (n) to keys id
This commit is contained in:
parent
32d5f4af2f
commit
9f9d733df9
1 changed files with 3 additions and 2 deletions
|
@ -25,8 +25,9 @@ function M.parse(value)
|
|||
if type(mode) == "table" then
|
||||
---@cast mode string[]
|
||||
table.sort(mode)
|
||||
ret.id = ret.id .. " (" .. table.concat(mode, ", ") .. ")"
|
||||
elseif mode ~= "n" then
|
||||
mode = table.concat(mode, ", ")
|
||||
end
|
||||
if mode ~= "n" then
|
||||
ret.id = ret.id .. " (" .. mode .. ")"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue