diff options
| author | UMTS at Teleco <crt@teleco.ch> | 2026-03-08 23:27:14 +0100 |
|---|---|---|
| committer | UMTS at Teleco <crt@teleco.ch> | 2026-03-08 23:27:14 +0100 |
| commit | 4b211599ee41f8d77ff240337582c178289fd222 (patch) | |
| tree | c5f119a7f22313d3c13e3e642fbddf10549cf4f4 /src/cli.rs | |
| parent | 249d6f5b37d2a2ea6d78127b6d3a71e81f7bb7a3 (diff) | |
fix fix fix
Diffstat (limited to 'src/cli.rs')
| -rw-r--r-- | src/cli.rs | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -25,8 +25,8 @@ pub struct Args { pub csv: Option<Option<PathBuf>>, #[arg(short = 'l', long = "list")] pub tld_list: Option<String>, - #[arg(short = 'i', long = "import-filter")] - pub import_filter: Option<PathBuf>, + #[arg(short = 'i', long = "import-list", alias = "import-filter")] + pub import_list: Option<PathBuf>, #[arg(short = 't', long = "top", value_delimiter = ',')] pub top_tlds: Option<Vec<String>>, #[arg(short = 'o', long = "onlytop", value_delimiter = ',')] @@ -44,10 +44,10 @@ pub struct Args { /// search for names/domains in a text file line by line. #[arg(short = 'A', long = "autosearch")] pub autosearch: Option<PathBuf>, - /// Use a monochrome color scheme TODO: not applied in TUI since colors were changed from RGB to Ratatui colors. should fix + /// Use a monochrome color scheme #[arg(short = 'C', long = "no-color", default_value_t = false)] pub no_color: bool, - /// Do not use unicode only plain ASCII TODO: not applied in TUI for some reason idk + /// Do not use unicode only plain ASCII #[arg(short = 'U', long = "no-unicode", default_value_t = false)] pub no_unicode: bool, #[arg(short = 'M', long = "no-mouse", default_value_t = false)] @@ -130,7 +130,7 @@ Advanced : -e --environement=PATH Define where .hoardom folder should be Defaults to /home/USER/.hoardom/ Stores settings, imported lists, favs, cache etc. --i --import-filter=PATH Import a custom toml list for this session +-i --import-list=PATH Import a custom toml list for this session -t --top=TLD,TLD Set certain TLDs to show up as first result for when you need a domain in your country or for searching a specific one. |
