Skip to content

Commit 5610eb6

Browse files
committed
perf(tree): small perf optims
1 parent 1c5aeba commit 5610eb6

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

lua/which-key/node.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function M:inspect(depth)
8080
end
8181

8282
function M:count()
83-
return #self:children()
83+
return not self:can_expand() and vim.tbl_count(self._children) or #self:children()
8484
end
8585

8686
function M:is_group()
@@ -96,7 +96,7 @@ function M:is_plugin()
9696
end
9797

9898
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))
100100
end
101101

102102
---@return wk.Node[]

lua/which-key/tree.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ 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-
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()
6767
end
6868

6969
function M:fix()

lua/which-key/util.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ end
3535
--- Normalizes (and fixes) the lhs of a keymap
3636
---@param lhs string
3737
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))
3942
return M.cache.norm[lhs]
4043
end
4144

0 commit comments

Comments
 (0)