summaryrefslogtreecommitdiffstats
path: root/src/bin/bat/clap_app.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/bat/clap_app.rs')
-rw-r--r--src/bin/bat/clap_app.rs24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/bin/bat/clap_app.rs b/src/bin/bat/clap_app.rs
index 94ddce55..e0460f74 100644
--- a/src/bin/bat/clap_app.rs
+++ b/src/bin/bat/clap_app.rs
@@ -350,6 +350,18 @@ pub fn build_app(interactive_output: bool) -> ClapApp<'static, 'static> {
.takes_value(true),
)
.arg(
+ Arg::with_name("ignored-suffix")
+ .number_of_values(1)
+ .multiple(true)
+ .takes_value(true)
+ .long("ignored-suffix")
+ .hidden_short_help(true)
+ .help(
+ "Ignore extension. For example:\n \
+ 'bat --ignored-suffix \".dev\" my_file.json.dev' will use JSON syntax, and ignore '.dev'"
+ )
+ )
+ .arg(
Arg::with_name("theme")
.long("theme")
.overrides_with("theme")
@@ -514,18 +526,6 @@ pub fn build_app(interactive_output: bool) -> ClapApp<'static, 'static> {
.hidden_short_help(true)
.help("Show acknowledgements."),
)
- .arg(
- Arg::with_name("ignored-suffix")
- .number_of_values(1)
- .multiple(true)
- .takes_value(true)
- .long("ignored-suffix")
- .hidden_short_help(true)
- .help(
- "Ignore extension. For example:\n \
- 'bat --ignored-suffix \".dev\" my_file.json.dev' will use JSON syntax, and ignore '.dev'"
- )
- )
.help_message("Print this help message.")
.version_message("Show version information.");