Skip to content

Commit 9f9d733

Browse files
committed
fix(keys): dont add (n) to keys id
1 parent 32d5f4a commit 9f9d733

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lua/lazy/core/handler/keys.lua

+3-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ function M.parse(value)
2525
if type(mode) == "table" then
2626
---@cast mode string[]
2727
table.sort(mode)
28-
ret.id = ret.id .. " (" .. table.concat(mode, ", ") .. ")"
29-
elseif mode ~= "n" then
28+
mode = table.concat(mode, ", ")
29+
end
30+
if mode ~= "n" then
3031
ret.id = ret.id .. " (" .. mode .. ")"
3132
end
3233
end

0 commit comments

Comments
 (0)