Crates.io | favlist |
lib.rs | favlist |
version | 2.0.0 |
source | src |
created_at | 2020-01-21 17:16:06.859823 |
updated_at | 2020-08-25 17:49:22.689078 |
description | Create and manage lists using SQLite |
homepage | |
repository | https://github.com/spenserblack/favlist |
max_upload_size | |
id | 200818 |
size | 126,678 |
Easily make lists, backed up with a SQLite database
# create a new list of movies with an important (not-null) title and an integer year
favlist new Movies ~Title Year@int
# Add a new entry to the Movies list
favlist add Movies -c Title "The Curse of the Cursed Curse" -c Year 2006
# list movies with "Curse" in the title made in 2006 and print in YAML format
favlist list Movies -f Title Curse --filter Year 2006 --yaml
# Change the Year in row 1 of Movies
favlist edit Movies 1 -c Year 2005
# Remove row 1 from Movies
favlist sub Movies 1
# Launch the TUI
favlist
# Help
favlist --help
favlist [SUBCOMMAND] --help
favlist new
favlist rem
favlist add
favlist sub
favlist edit
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
.
# Latest released version
cargo install favlist
# Don't want the TUI feature?
cargo install --no-default-features favlist
# Want to get notified about new releases?
cargo install favlist --features check-latest