2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-02-17 14:38:32 +00:00
nushell/crates/nu-cli
Leonhard Kipp 48f535f02e
Display aliases and custom commands in which; fix ()
* Display aliases and custom commands in which; Fix 

Example output of nu after the commit is applied:

```shell
/home/leo/repos/nushell(feature/which_inspect_alias)> def docker-ps [] { docker ps --format '{{json .}}' | from json -o }
/home/leo/repos/nushell(feature/which_inspect_alias)> which docker-ps
───┬───────────┬────────────────────────┬─────────
 # │    arg    │          path          │ builtin
───┼───────────┼────────────────────────┼─────────
 0 │ docker-ps │ nushell custom command │ No
───┴───────────┴────────────────────────┴─────────
/home/leo/repos/nushell(feature/which_inspect_alias)> alias d = gid pd
/home/leo/repos/nushell(feature/which_inspect_alias)> which d
───┬─────┬───────────────┬─────────
 # │ arg │     path      │ builtin
───┼─────┼───────────────┼─────────
 0 │ d   │ nushell alias │ No
───┴─────┴───────────────┴─────────
```

* Update documentation
2021-01-02 06:40:44 +13:00
..
assets moved theme assets local to crate () 2020-08-11 13:57:03 -05:00
src Display aliases and custom commands in which; fix () 2021-01-02 06:40:44 +13:00
tests Multiline scripts part 2 () 2020-12-18 20:53:49 +13:00
build.rs update to shadow-rs 0.5. make use easy () 2020-12-24 05:56:05 +13:00
Cargo.toml Replace clipboard with arboard () 2020-12-31 06:16:02 +13:00