Crates.io | suchi |
lib.rs | suchi |
version | 0.1.4 |
source | src |
created_at | 2024-10-09 04:45:25.599513 |
updated_at | 2024-11-07 14:35:50.795595 |
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,214 |
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)
- clear
Remove all tasks in one go.
Example: suchi clear