Added in cut, copy and paste to the context menu. Also removed find pattern, as that's no longer a valid command. Also made it so commands only show up if their predicates are valid.

This commit is contained in:
Adam Harrison
2021-11-23 21:03:38 -05:00
parent d7b6fe3d42
commit 64f66e5d1e
5 changed files with 42 additions and 23 deletions
+6 -2
View File
@@ -66,9 +66,13 @@ function ContextMenu:show(x, y)
for _, items in ipairs(self.itemset) do
if items.predicate(x, y) then
items_list.width = math.max(items_list.width, items.items.width)
items_list.height = items_list.height + items.items.height
items_list.height = items_list.height
for _, subitems in ipairs(items.items) do
table.insert(items_list, subitems)
if not subitems.command or command.is_valid(subitems.command) then
local lw, lh = get_item_size(subitems)
items_list.height = items_list.height + lh
table.insert(items_list, subitems)
end
end
end
end