mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 01:43:47 +01:00
5db57abc7d
# Description Adds a `--quiet` flag to the `watch` command, silencing the message usually shown when invoking `watch`. Resolves #13411 As implemented, `--quiet` is orthogonal to `--verbose`. I'm open to improving the flag's name, behaviour and/or documentation to make it more user-friendly, as I realise this may be surprising as-is. ``` > watch path {|a b c| echo $a $b $c} Now watching files at "/home/user/path". Press ctrl+c to abort. ───┬─────────────────────── 0 │ Remove 1 │ /home/user/path 2 │ ───┴─────────────────────── ^C > watch --quiet path {|a b c| echo $a $b $c} ───┬─────────────────────── 0 │ Remove 1 │ /home/user/path 2 │ ───┴─────────────────────── ^C ``` # User-Facing Changes Adds `--quiet`/`-q` flag to `watch`, which removes the initial status message. |
||
---|---|---|
.. | ||
src | ||
tests | ||
Cargo.toml | ||
LICENSE | ||
README.md |
This crate contains the majority of our commands
We allow ourselves to move some of the commands in nu-command
to nu-cmd-*
crates as needed.
Internal Nushell crate
This crate implements components of Nushell and is not designed to support plugin authors or other users directly.