···11+---
22+title: feat: display archive contents
33+status: done
44+priority_value: 50
55+priority: medium
66+owner: brookjeynes
77+created: 2026-01-14T21:48:51Z
88+completed: 2026-01-14T21:49:06Z
99+---
1010+When a user scrolls past a compressed file (.tar, .zip, etc.), they should be
1111+able to see the top level contents.
+11
.gila/done/grave_zone_233/grave_zone_233.md
···11+---
22+title: feat: support cursor placement in input
33+status: done
44+priority_value: 50
55+priority: high
66+owner: brookjeynes
77+created: 2026-01-11T21:53:52Z
88+completed: 2026-01-14T21:48:27Z
99+---
1010+Currently the user cannot move their cursor left or right when typing in the
1111+input field. This is painful when renaming files or changing directories.
+11
.gila/todo/helpful_heat_b1b/helpful_heat_b1b.md
···11+---
22+title: feat: add keybind to compress item
33+status: todo
44+priority_value: 50
55+priority: low
66+owner: brookjeynes
77+created: 2026-01-14T21:46:27Z
88+---
99+Allow users to compress files/folders via a keybind
1010+1111+This should have a config option as to what file format to compress as.
···11+---
22+title: feat: add keybind to extraction archive
33+status: todo
44+priority_value: 50
55+priority: low
66+owner: brookjeynes
77+created: 2026-01-11T21:52:59Z
88+---
99+Allow users to extract archives via a keybind
-9
PROJECT_BOARD.md
···11-# Project board
22-33-Key:
44-- `[ ]` Todo
55-- `[-]` In progress
66-- `[x]` Done
77-88-## Backlog
99-- [ ] Keybind to unzip archives.
+12-10
README.md
···1010Vim-like bindings and a minimalist interface, Jido focuses on speed and
1111simplicity.
12121313-Jido used Zig `0.14.0`.
1313+Jido is built with Zig v`0.15.2`.
14141515- [Installation](#installation)
1616- [Integrations](#integrations)
···8787Config = struct {
8888 .show_hidden: bool = true,
8989 .sort_dirs: bool = true,
9090- .show_images: bool = true, -- Images are only supported in a terminal
9191- supporting the `kitty image protocol`.
9090+ .show_images: bool = true, -- Images are only supported in a terminal
9191+ supporting the `kitty image protocol`.
9292 .preview_file: bool = true,
9393- .empty_trash_on_exit: bool = false, -- Emptying the trash permanently deletes
9494- all files within the trash. These
9595- files are not recoverable past this
9696- point.
9797- .true_dir_size: bool = false, -- Display size of directory including
9898- all its children. This can and will
9999- cause lag on deeply nested directories.
9393+ .empty_trash_on_exit: bool = false, -- Emptying the trash permanently deletes
9494+ all files within the trash. These
9595+ files are not recoverable past this
9696+ point.
9797+ .true_dir_size: bool = false, -- Display size of directory including
9898+ all its children. This can and will
9999+ cause lag on deeply nested directories.
100100+ .archive_traversal_limit: usize = 100, -- How many files to be traversed when reading
101101+ an archive (zip, tar, etc.).
100102 .keybinds: Keybinds,
101103 .styles: Styles
102104}