Easily make lists, backed up with a SQLite database
```bash
favlist new Movies ~Title Year@int
favlist add Movies -c Title "The Curse of the Cursed Curse" -c Year 2006
favlist list Movies -f Title Curse --filter Year 2006 --yaml
favlist edit Movies 1 -c Year 2005
favlist sub Movies 1
favlist
favlist --help
favlist [SUBCOMMAND] --help
``
- Create a new list with
favlist new
- Delete a list with
favlist rem
- Add a new row to the list with
favlist add
- Subtract a row from the list with
favlist sub
- Edit values in a row with
favlist edit
- Print values of list with
favlist list`
The TUI is included by default. If you don't want this feature included, pass the
--no-default-features
flag when installing/building with cargo
.
For now, you cannot edit any data with the TUI, but you can view data.
Switch between tables with <
and >
, and highlight rows with ↑
and ↓
on your keyboard. Exit the TUI with ESC
.
```bash
cargo install favlist
cargo install --no-default-features favlist
cargo install favlist --features check-latest ```