diff --git a/cookbook/help.md b/cookbook/help.md index f33c3abd776..0e399eed7ef 100644 --- a/cookbook/help.md +++ b/cookbook/help.md @@ -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 +```