diff --git a/.vuepress/config.js b/.vuepress/config.js index 51e0fd2f785..447b625d44e 100755 --- a/.vuepress/config.js +++ b/.vuepress/config.js @@ -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", @@ -104,6 +110,7 @@ module.exports = { "stdout_stderr_exit_codes", "escaping", "3rdpartyprompts", + "shells_in_shells", "line_editor", "coloring_and_theming", ] @@ -123,10 +130,9 @@ module.exports = { title: "Advanced", collapsable: false, children: [ - "creating_errors", "dataframes", "metadata", - "shells_in_shells", + "creating_errors", "parallelism", "plugins", ] diff --git a/book/README.md b/book/README.md index 81aef7d9eda..8a4ff833107 100644 --- a/book/README.md +++ b/book/README.md @@ -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 `. <<< @/snippets/introduction/help_example.sh