summaryrefslogtreecommitdiffstats
path: root/src/options.rs
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2024-01-23 15:49:06 +0100
committerSebastian Thiel <sebastian.thiel@icloud.com>2024-01-23 15:49:06 +0100
commitd837d720e3b1e204043b8d89447db0d65ae000ba (patch)
treec097091966e2af1b00916ff6e70d49ee4362b532 /src/options.rs
parent600bee234edd4e7922017c26927a6f135a02c335 (diff)
parent78b9a8e22568c902132ed98d32e223ff71eb7b06 (diff)
Merge branch 'no-entry-check'
Diffstat (limited to 'src/options.rs')
-rw-r--r--src/options.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/options.rs b/src/options.rs
index a59a90b..f2d5635 100644
--- a/src/options.rs
+++ b/src/options.rs
@@ -91,6 +91,9 @@ pub enum Command {
#[cfg(feature = "tui-crossplatform")]
#[clap(name = "interactive", visible_alias = "i")]
Interactive {
+ /// Do not check entries for presence when listing a directory to avoid slugging performance on slow filesystems.
+ #[clap(long, short = 'e')]
+ no_entry_check: bool,
/// One or more input files or directories. If unset, we will use all entries in the current working directory.
#[clap(value_parser)]
input: Vec<PathBuf>,