| Crates.io | suchi |
| lib.rs | suchi |
| version | 0.1.5 |
| created_at | 2024-10-09 04:45:25.599513+00 |
| updated_at | 2025-01-23 10:57:26.605767+00 |
| description | A simple todo |
| homepage | https://github.com/user-64bit/suchi |
| repository | https://github.com/user-64bit/suchi |
| max_upload_size | |
| id | 1402000 |
| size | 1,092,185 |

suchi is your fast, simple, and efficient task organizer written in Rust!
First, install Rust
cargo install suchi
git clone https://github.com/user-64bit/suchi.git && cd suchi && cargo install
- add [TASKs]
Add a new task/tasks to your list.
Examples:
suchi add "Take a break and stretch" "Watch Next Episode of One Peace"
OR
suchi add bat ball cat apple
- edit [INDEX] [UPDATED TASK]
Update an existing task by its index.
Example: suchi edit 1 "Skip the break, let's push forward!"
- show
Display all your tasks.
Example: suchi show
- done [INDEXs]
Mark a task/tasks as complete by its index.
Example: suchi done 1 2 (marks the first and second tasks as completed)
- undone [INDEXs]
Mark a task/tasks as complete by its index.
Example: suchi undone 1 2 (marks the first and second tasks as completed)
- filter done/undone
Filters task by done or undone tasks
Example: suchi filter done (gives all the done tasks)
- delete [INDEXs]
Remove a task/tasks by its index.
Example: suchi delete 4 5 (removes the fourth and fifth task)
- search [text]
search task by providing text
Example: suchi search Watch (shows task with "Watch" word in it.)
- clear
Remove all tasks in one go.
Example: suchi clear