mirror of
https://github.com/sharkdp/bat
synced 2024-11-22 20:03:06 +00:00
added set_terminal_title arg to clap_app.rs to fix ci errors
This commit is contained in:
parent
60e32cf823
commit
7f12989127
3 changed files with 10 additions and 5 deletions
|
@ -50,9 +50,6 @@ Options:
|
|||
--diff-context <N>
|
||||
Include N lines of context around added/removed/modified lines when using '--diff'.
|
||||
|
||||
--set_terminal_title
|
||||
Sets terminal title to filenames when using a pager.
|
||||
|
||||
--tabs <T>
|
||||
Set the tab width to T spaces. Use a width of 0 to pass tabs through directly
|
||||
|
||||
|
@ -163,6 +160,9 @@ Options:
|
|||
--acknowledgements
|
||||
Show acknowledgements.
|
||||
|
||||
--set_terminal_title
|
||||
Sets terminal title to filenames when using a pager.
|
||||
|
||||
-h, --help
|
||||
Print help (see a summary with '-h')
|
||||
|
||||
|
|
|
@ -21,8 +21,6 @@ Options:
|
|||
Specify the name to display for a file.
|
||||
-d, --diff
|
||||
Only show lines that have been added/removed/modified.
|
||||
--set_terminal_title
|
||||
Sets terminal title when using a pager
|
||||
--tabs <T>
|
||||
Set the tab width to T spaces.
|
||||
--wrap <mode>
|
||||
|
|
|
@ -567,6 +567,13 @@ pub fn build_app(interactive_output: bool) -> Command {
|
|||
.action(ArgAction::SetTrue)
|
||||
.hide_short_help(true)
|
||||
.help("Show acknowledgements."),
|
||||
)
|
||||
.arg(
|
||||
Arg::new("set_terminal_title")
|
||||
.long("set_terminal_title")
|
||||
.action(ArgAction::SetTrue)
|
||||
.hide_short_help(true)
|
||||
.help("Sets terminal title to filenames when using a pager."),
|
||||
);
|
||||
|
||||
// Check if the current directory contains a file name cache. Otherwise,
|
||||
|
|
Loading…
Reference in a new issue