develop
shevernitskiy 2023-09-24 13:22:20 +03:00
parent bb5e178756
commit be26449ef7
1 changed files with 80 additions and 84 deletions

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