develop
shevernitskiy 2023-09-24 13:19:48 +03:00
parent 9f4f14d025
commit bb5e178756
1 changed files with 85 additions and 81 deletions

@ -145,8 +145,12 @@ local function get_choices(hotkeys, bindings, is_inverted)
command_str = command:sub(1, max_command_len - 3) .. '...'
end
table.insert(tokens, 1, { text = command_str })
local choice = {icon=ARROW, command=command, text=tokens,
hk_width=hk_width}
local choice = {
icon = ARROW,
command = command,
text = tokens,
hk_width = hk_width
}
max_width = math.max(max_width, hk_width + #command_str + LIST_BUFFER)
table.insert(choices, is_inverted and 1 or #choices + 1, choice)
::continue::