diff --git a/CHANGELOG.md b/CHANGELOG.md index d77d85d..d48c317 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,8 +12,6 @@ - Add new `--no-ignore-parent` flag, see #787 (@will459) -- Add new `-N, --no-strip` flag, see #760 (@jcaplan) - ## Bugfixes - Set default path separator to `/` in MSYS, see #537 and #730 (@aswild) diff --git a/src/app.rs b/src/app.rs index f8556b6..b26593b 100644 --- a/src/app.rs +++ b/src/app.rs @@ -615,17 +615,6 @@ pub fn build_app() -> App<'static, 'static> { argument. Changes the usage to `fd [FLAGS/OPTIONS] --search-path \ --search-path []`", ), - ) - .arg( - Arg::with_name("no-strip") - .long("no-strip") - .short("N") - .conflicts_with_all(&["absolute-path", "list-details"]) - .help("Show all non-absolute paths with './' prefix") - .long_help( - "Show all non-absolute paths with './' prefix. This flag only affects \ - the output when no search path is provided.") - ); if cfg!(unix) { diff --git a/src/main.rs b/src/main.rs index a23bc90..47e68bd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -375,8 +375,8 @@ fn construct_config(matches: clap::ArgMatches, pattern_regex: &str) -> Result