Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 8 additions & 2 deletions .vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ module.exports = {
"installation",
"thinking_in_nushell",
"moving_around",
]
},
{
title: "Nu Fundamentals",
collapsable: false,
children: [
"types_of_data",
"loading_data",
"working_with_strings",
Expand Down Expand Up @@ -104,6 +110,7 @@ module.exports = {
"stdout_stderr_exit_codes",
"escaping",
"3rdpartyprompts",
"shells_in_shells",
"line_editor",
"coloring_and_theming",
]
Expand All @@ -123,10 +130,9 @@ module.exports = {
title: "Advanced",
collapsable: false,
children: [
"creating_errors",
"dataframes",
"metadata",
"shells_in_shells",
"creating_errors",
"parallelism",
"plugins",
]
Expand Down
2 changes: 1 addition & 1 deletion book/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,6 @@ If this looks very similar to what we had before, you have a keen eye! It is sim

### Getting Help

Help text for any of Nu's builtin commands can be discovered with the [`help`](commands/help.md) command. To see all commands, run `help commands`.
Help text for any of Nu's builtin commands can be discovered with the [`help`](commands/help.md) command. To see all commands, run `help commands`. You can also search for a topic by doing `help -f <topic>`.

<<< @/snippets/introduction/help_example.sh