tangled
alpha
login
or
join now
brookjeynes.dev
/
jido
7
fork
atom
地圖 (Jido) is a lightweight Unix TUI file explorer designed for speed and simplicity.
7
fork
atom
overview
issues
pulls
pipelines
fix: Allow the cursor to be moved left and right.
brookjeynes.dev
11 months ago
46de8fe3
9720454b
+2
1 changed file
expand all
collapse all
unified
split
src
event_handlers.zig
+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
682
+
Key.left => app.text_input.cursorLeft(),
683
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| {