nushell/crates/nu-command/src/system
Darren Schroeder 0780300fb3
add a new inspect command for more debugging (#8028)
# Description

The purpose of this command is to help to debug pipelines. It works by
allowing you to inject the `inspect` command into a pipeline at any
point. Then it shows you what the input description is and what the
input values are that are passed into `inspect`. With each step it
prints this information out while also passing the value information on
to the next step in the pipeline.


![image](https://user-images.githubusercontent.com/343840/218154064-e107859b-d0da-41c6-8e34-2d717639b81c.png)

This command is kind of a "hack job" because it clones maybe too much
and I had to get creative in order to output two different tables. I'm
sure there are many ways this can be improved or combined into other
commands but I wanted to start here. Note that the `inspect` output is
written to stderr and the normal nushell output is written to stdout. If
we were to output both to stdout, nushell would get confused.

# User-Facing Changes



# Tests + Formatting

Don't forget to add tests that cover your changes.

Make sure you've run and fixed any issues with these commands:

- `cargo fmt --all -- --check` to check standard code formatting (`cargo
fmt --all` applies these changes)
- `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A
clippy::needless_collect` to check that you're using the standard code
style
- `cargo test --workspace` to check that all tests pass

# After Submitting

If your PR had any user-facing changes, update [the
documentation](https://github.com/nushell/nushell.github.io) after the
PR is merged, if necessary. This will help us keep the docs up to date.
2023-02-11 18:59:11 +00:00
..
complete.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
exec.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
explain.rs explain command (#7957) 2023-02-09 13:59:38 -06:00
inspect_table.rs add a new inspect command for more debugging (#8028) 2023-02-11 18:59:11 +00:00
inspect.rs add a new inspect command for more debugging (#8028) 2023-02-11 18:59:11 +00:00
mod.rs add a new inspect command for more debugging (#8028) 2023-02-11 18:59:11 +00:00
nu_check.rs Apply more recent/nightly clippy lints (#7916) 2023-01-30 14:06:36 +01:00
ps.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
registry_query.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
run_external.rs Use variable names directly in the format strings (#7906) 2023-01-29 19:37:54 -06:00
sys.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
timeit.rs rename benchmark to time (#8018) 2023-02-11 18:57:48 +00:00
which_.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00