File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ function M:inspect(depth)
80
80
end
81
81
82
82
function M :count ()
83
- return # self :children ()
83
+ return not self : can_expand () and vim . tbl_count ( self . _children ) or # self :children ()
84
84
end
85
85
86
86
function M :is_group ()
@@ -96,7 +96,7 @@ function M:is_plugin()
96
96
end
97
97
98
98
function M :can_expand ()
99
- return self .plugin or self : is_proxy () or (self .mapping and self .mapping .expand )
99
+ return self .plugin or ( self . mapping and (self .mapping . proxy or self .mapping .expand ) )
100
100
end
101
101
102
102
--- @return wk.Node[]
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ 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
- return node : can_expand () or node .keymap or node : is_group () or ( node .mapping and not node .group )
66
+ return node .keymap or ( node .mapping and not node .group ) or node : is_group ( )
67
67
end
68
68
69
69
function M :fix ()
Original file line number Diff line number Diff line change 35
35
--- Normalizes (and fixes) the lhs of a keymap
36
36
--- @param lhs string
37
37
function M .norm (lhs )
38
- M .cache .norm [lhs ] = M .cache .norm [lhs ] or vim .fn .keytrans (M .t (lhs ))
38
+ if M .cache .norm [lhs ] then
39
+ return M .cache .norm [lhs ]
40
+ end
41
+ M .cache .norm [lhs ] = vim .fn .keytrans (M .t (lhs ))
39
42
return M .cache .norm [lhs ]
40
43
end
41
44
You can’t perform that action at this time.
0 commit comments