commit d44a2393f26e695f4c62f27808f6f1e5d7c85586 from: mtmn date: Thu May 7 17:27:47 2026 UTC docs: update readme commit - 447368a7b2cd4034ff4d4928fb1aa4ae3317fe58 commit + d44a2393f26e695f4c62f27808f6f1e5d7c85586 blob - 75a570894f3278411b5c09344aefac1a3b01f732 blob + f143e84d03b8d9c69c0e9936f4775c52e65d0393 --- README.md +++ README.md @@ -4,10 +4,10 @@ A command-line tool for interactive shell navigation a ## Features -* Interactive shell navigation -* History search and management -* Fuzzy finding integration -* Memcached integration for fast history lookup +- Interactive shell navigation +- Fuzzy finding integration +- Memcached integration +- Grep integration ## Building @@ -19,17 +19,37 @@ zig build -Doptimize=ReleaseSafe ## Usage -```sh -./zig-out/bin/magdalena [OPTIONS] ``` +magdalena recent-dirs +magdalena recent-files +magdalena favorites +magdalena goto-dir +magdalena goto-file +magdalena log-dir +magdalena log-file [type] [action] +magdalena search +magdalena look-file [--depth ] +magdalena look-dir [--depth ] +magdalena grep +``` ### Options -* `-h`, `--help`: Print help information. +- `-c`, `--clean`: Perform cleanup +- `-h`, `--help`: Show this help ### Example ```sh # Run magdalena ./zig-out/bin/magdalena + +# Show recent directories +./zig-out/bin/magdalena recent-dirs + +# Search history +./zig-out/bin/magdalena search "myquery" + +# Explore directory with depth 3 +./zig-out/bin/magdalena look-dir --depth 3 ```