suchi

Crates.iosuchi
lib.rssuchi
version0.1.4
sourcesrc
created_at2024-10-09 04:45:25.599513
updated_at2024-11-07 14:35:50.795595
descriptionA simple todo
homepagehttps://github.com/user-64bit/suchi
repositoryhttps://github.com/user-64bit/suchi
max_upload_size
id1402000
size1,092,214
Arth (user-64bit)

documentation

README

suchi

suchi

[Note: The code of Repo might be(is) not good because I'm learning Rust while creating this project so it's not good and I know it so use it on your own risk.]

suchi is your fast, simple, and efficient task organizer written in Rust!

How to Use:

First, install Rust

cargo install suchi

Setup Locally

git clone https://github.com/user-64bit/suchi.git && cd suchi && cargo install

Availabel Commands

- 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

Commit count: 21

cargo fmt