We still don't have up/down arrow keys. And we still don't have the ability to filter filenames by typing.
NYRESFK6T6NNVQRPVQEJP37Z4XUOUDBQWWU7DMQ23Y3GX7U2A4XQC if File_navigation.num_lines == nil thenFile_navigation.num_lines = source.num_lines_for_file_navigator()endApp.color(Menu_background_color)love.graphics.rectangle('fill', 0,Menu_status_bar_height, App.screen.width, File_navigation.num_lines * Editor_state.line_height)local x,y = 5, Menu_status_bar_height
function add_file_to_menu(s, cursor_highlight)
function source.num_lines_for_file_navigator()local result = 1local x = 5for i,filename in ipairs(File_navigation.candidates) dolocal width = App.width(to_text(filename))if x + width > App.screen.width - 5 thenresult = result+1x = 5 + widthelsex = x + width + 30endendreturn resultendfunction add_file_to_menu(x,y, s, cursor_highlight)