A simple command line to-do list manager using markdown-like styling
To make the .todo.user
if it is not in the directory, use the following command for vim (use whatever text editor you like for this):
# to get this repo
git clone https://github.com/AshuHK/TODO_CLI.git
cd TODO_CLI
# to create the .todo.user file
vim .todo.user
:wq
Then, you will have to compile using the Makefile and then you are all set:
# to compile
make
# to use TODO_CLI
./todo_cli
-
Main Controls
l
orL
- show your to do lista
orA
- append new item to the listc
orC
- toggle checkmark on an item in the listd
orD
- delete item in the listr
orR
- rename item in the list
-
Misc.
h
orH
- helpq
orQ
- quit TODO CLI
Note: The todo list is stored in .todo.user
.