Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cookbook/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,9 @@ help http get
# => http get content from example.com, with custom header
# => > http get -H [my-header-key my-header-value] https://www.example.com
```

### Custom help command
If you want to change the `help` output, you can create your own custom command named `help` and it will also be used for all `--help` invocations. An example of this is in the standard library.
```nu
use std/help
```