2018-03-12 14:00:41 +00:00
|
|
|
# rodo
|
|
|
|
A command-line todo list in Racket
|
2018-03-12 14:01:22 +00:00
|
|
|
|
2018-04-18 04:08:38 +00:00
|
|
|
***Current bugs:***
|
|
|
|
|
|
|
|
* removing the "0th" item will remove all items in the list. **Example:** `rodo rm 0`
|
|
|
|
|
|
|
|
* removing items longest than the list will throw an error. **Example:** You have a list longer than 3 and you `rodo rm 7`
|
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
## Commands
|
2018-04-10 00:27:01 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
### `init`
|
|
|
|
Initializes a file in *~/.rodo/todo-list*
|
|
|
|
|
|
|
|
**Example:**
|
|
|
|
`$ rodo init`
|
2018-04-10 00:27:01 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
### `ls`
|
|
|
|
Lists items from the list
|
|
|
|
|
|
|
|
**Example:**
|
|
|
|
`$ rodo rm 1`
|
2018-04-13 06:14:51 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
### `add`
|
|
|
|
Adds an item to the list
|
2018-04-13 06:14:51 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
**Example:**
|
|
|
|
`$ rodo add bread`
|
2018-04-17 03:05:18 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
**Note:**
|
|
|
|
For multi-word items you will need to surround your item in double quotes like this:
|
|
|
|
`$ rodo add "go to the bank"`
|
2018-04-10 00:27:01 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
### `rm`
|
|
|
|
Removes an item from the list
|
2018-04-13 06:14:51 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
**Example:**
|
|
|
|
`$ rodo rm 1`
|
2018-04-13 06:14:51 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
**Note:**
|
|
|
|
You may have to run `rodo ls` to see which number corresponds to which item to remove it.
|
|
|
|
|
|
|
|
## Configure rodo
|
|
|
|
Right now, the configurations can be found in the `config.rkt` file. Settings such at program name, path, and directory can be set here.
|