地圖 (Jido) is a lightweight Unix TUI file explorer designed for speed and simplicity.

fix: Allow the cursor to be moved left and right.

+2
+2
src/event_handlers.zig
··· 679 679 if (app.state != .help_menu) app.state = .normal; 680 680 app.directories.entries.selected = selected; 681 681 }, 682 + Key.left => app.text_input.cursorLeft(), 683 + Key.right => app.text_input.cursorRight(), 682 684 Key.up => { 683 685 if (app.state == .command) { 684 686 if (app.command_history.next()) |command| {