aboutsummaryrefslogtreecommitdiff
path: root/src/cli.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 5428f05..9466359 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -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.