Highlight echoed recipe lines in bold by default (#512)
Make `--highlight`, which highlights echoed recipe lines in bold, the default behavior. Add `--no-highlight` to activate the old behavior.
This commit is contained in:
parent
36aca2bf7a
commit
2ff33de5a1
@ -33,6 +33,7 @@ mod arg {
|
|||||||
pub(crate) const COLOR: &str = "COLOR";
|
pub(crate) const COLOR: &str = "COLOR";
|
||||||
pub(crate) const DRY_RUN: &str = "DRY-RUN";
|
pub(crate) const DRY_RUN: &str = "DRY-RUN";
|
||||||
pub(crate) const HIGHLIGHT: &str = "HIGHLIGHT";
|
pub(crate) const HIGHLIGHT: &str = "HIGHLIGHT";
|
||||||
|
pub(crate) const NO_HIGHLIGHT: &str = "NO-HIGHLIGHT";
|
||||||
pub(crate) const JUSTFILE: &str = "JUSTFILE";
|
pub(crate) const JUSTFILE: &str = "JUSTFILE";
|
||||||
pub(crate) const QUIET: &str = "QUIET";
|
pub(crate) const QUIET: &str = "QUIET";
|
||||||
pub(crate) const SET: &str = "SET";
|
pub(crate) const SET: &str = "SET";
|
||||||
@ -91,7 +92,14 @@ impl<'a> Config<'a> {
|
|||||||
.arg(
|
.arg(
|
||||||
Arg::with_name(arg::HIGHLIGHT)
|
Arg::with_name(arg::HIGHLIGHT)
|
||||||
.long("highlight")
|
.long("highlight")
|
||||||
.help("Highlight echoed recipe lines in bold"),
|
.help("Highlight echoed recipe lines in bold")
|
||||||
|
.overrides_with(arg::NO_HIGHLIGHT),
|
||||||
|
)
|
||||||
|
.arg(
|
||||||
|
Arg::with_name(arg::NO_HIGHLIGHT)
|
||||||
|
.long("no-highlight")
|
||||||
|
.help("Don't highlight echoed recipe lines in bold")
|
||||||
|
.overrides_with(arg::HIGHLIGHT),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
Arg::with_name(arg::JUSTFILE)
|
Arg::with_name(arg::JUSTFILE)
|
||||||
@ -287,7 +295,7 @@ impl<'a> Config<'a> {
|
|||||||
|
|
||||||
Ok(Config {
|
Ok(Config {
|
||||||
dry_run: matches.is_present(arg::DRY_RUN),
|
dry_run: matches.is_present(arg::DRY_RUN),
|
||||||
highlight: matches.is_present(arg::HIGHLIGHT),
|
highlight: !matches.is_present(arg::NO_HIGHLIGHT),
|
||||||
quiet: matches.is_present(arg::QUIET),
|
quiet: matches.is_present(arg::QUIET),
|
||||||
shell: matches.value_of(arg::SHELL).unwrap(),
|
shell: matches.value_of(arg::SHELL).unwrap(),
|
||||||
justfile: matches.value_of(arg::JUSTFILE).map(Path::new),
|
justfile: matches.value_of(arg::JUSTFILE).map(Path::new),
|
||||||
@ -340,15 +348,16 @@ USAGE:
|
|||||||
just [FLAGS] [OPTIONS] [--] [ARGUMENTS]...
|
just [FLAGS] [OPTIONS] [--] [ARGUMENTS]...
|
||||||
|
|
||||||
FLAGS:
|
FLAGS:
|
||||||
--dry-run Print what just would do without doing it
|
--dry-run Print what just would do without doing it
|
||||||
--dump Print entire justfile
|
--dump Print entire justfile
|
||||||
-e, --edit Open justfile with $EDITOR
|
-e, --edit Open justfile with $EDITOR
|
||||||
--evaluate Print evaluated variables
|
--evaluate Print evaluated variables
|
||||||
--highlight Highlight echoed recipe lines in bold
|
--highlight Highlight echoed recipe lines in bold
|
||||||
-l, --list List available recipes and their arguments
|
-l, --list List available recipes and their arguments
|
||||||
-q, --quiet Suppress all output
|
--no-highlight Don't highlight echoed recipe lines in bold
|
||||||
--summary List names of available recipes
|
-q, --quiet Suppress all output
|
||||||
-v, --verbose Use verbose output
|
--summary List names of available recipes
|
||||||
|
-v, --verbose Use verbose output
|
||||||
|
|
||||||
OPTIONS:
|
OPTIONS:
|
||||||
--color <COLOR>
|
--color <COLOR>
|
||||||
|
Loading…
Reference in New Issue
Block a user