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

docs(readme): add `archive_traversal_limit` flag

brookjeynes.dev c25fc4e9 5c29c339

verified
+11 -9
+11 -9
README.md
··· 87 87 Config = struct { 88 88 .show_hidden: bool = true, 89 89 .sort_dirs: bool = true, 90 - .show_images: bool = true, -- Images are only supported in a terminal 91 - supporting the `kitty image protocol`. 90 + .show_images: bool = true, -- Images are only supported in a terminal 91 + supporting the `kitty image protocol`. 92 92 .preview_file: bool = true, 93 - .empty_trash_on_exit: bool = false, -- Emptying the trash permanently deletes 94 - all files within the trash. These 95 - files are not recoverable past this 96 - point. 97 - .true_dir_size: bool = false, -- Display size of directory including 98 - all its children. This can and will 99 - cause lag on deeply nested directories. 93 + .empty_trash_on_exit: bool = false, -- Emptying the trash permanently deletes 94 + all files within the trash. These 95 + files are not recoverable past this 96 + point. 97 + .true_dir_size: bool = false, -- Display size of directory including 98 + all its children. This can and will 99 + cause lag on deeply nested directories. 100 + .archive_traversal_limit: usize = 100, -- How many files to be traversed when reading 101 + an archive (zip, tar, etc.). 100 102 .keybinds: Keybinds, 101 103 .styles: Styles 102 104 }