File tree 3 files changed +5
-0
lines changed
3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ M.fields = {
46
46
cond = { inherit = true },
47
47
preset = { inherit = true },
48
48
icon = { inherit = true },
49
+ real = { inherit = true },
49
50
proxy = {},
50
51
expand = {},
51
52
-- deprecated
Original file line number Diff line number Diff line change @@ -63,6 +63,9 @@ function M:keep(node)
63
63
if node .hidden or (node .keymap and node .keymap .desc == " which_key_ignore" ) then
64
64
return false
65
65
end
66
+ if node .mapping and node .mapping .real and not node .keymap then
67
+ return false
68
+ end
66
69
return node .keymap or (node .mapping and not node .group ) or node :is_group ()
67
70
end
68
71
Original file line number Diff line number Diff line change 55
55
--- @field group ? boolean
56
56
--- @field remap ? boolean
57
57
--- @field hidden ? boolean
58
+ --- @field real ? boolean this is a mapping for a real keymap. Hide it if the real keymap does not exist
58
59
--- @field preset ? boolean
59
60
--- @field icon ? wk.Icon | string
60
61
--- @field proxy ? string
You can’t perform that action at this time.
0 commit comments