summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCosmicHorror <CosmicHorrorDev@pm.me>2023-10-21 09:27:10 -0600
committerGitHub <noreply@github.com>2023-10-21 10:27:10 -0500
commit64649bb7f2ea7ff6f6f46cc33383cf80513367fd (patch)
tree49bce0e2f135d2d1ad015cbc7d2dde121e9b8e73
parent639d16fa3ce3a76eef3e41342e5ca535af826020 (diff)
Remove broken custom path separator flag (#250)
-rw-r--r--src/cli.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/cli.rs b/src/cli.rs
index b307e70..afc45a6 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -54,13 +54,6 @@ w - match full words only
*/
pub flags: Option<String>,
- #[arg(long, value_name = "SEPARATOR")]
- /// Set the path separator to use when printing file paths. The default is
- /// your platform's path separator ('/' on Unix, '\' on Windows). This flag
- /// is intended to override the default when the environment demands it. A
- /// path separator is limited to a single byte.
- pub path_separator: Option<char>,
-
/// The regexp or string (if using `-F`) to search for.
pub find: String,