Skip to content

Commit bcfe1e4

Browse files
committed
feat(mappings): allow flagging a mapping as real. It will be hidden if there's no real keymap.
1 parent ff61f4f commit bcfe1e4

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

lua/which-key/mappings.lua

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ M.fields = {
4646
cond = { inherit = true },
4747
preset = { inherit = true },
4848
icon = { inherit = true },
49+
real = { inherit = true },
4950
proxy = {},
5051
expand = {},
5152
-- deprecated

lua/which-key/tree.lua

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ function M:keep(node)
6363
if node.hidden or (node.keymap and node.keymap.desc == "which_key_ignore") then
6464
return false
6565
end
66+
if node.mapping and node.mapping.real and not node.keymap then
67+
return false
68+
end
6669
return node.keymap or (node.mapping and not node.group) or node:is_group()
6770
end
6871

lua/which-key/types.lua

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
---@field group? boolean
5656
---@field remap? boolean
5757
---@field hidden? boolean
58+
---@field real? boolean this is a mapping for a real keymap. Hide it if the real keymap does not exist
5859
---@field preset? boolean
5960
---@field icon? wk.Icon|string
6061
---@field proxy? string

0 commit comments

Comments
 (0)