Skip to content

Commit ccdb6ee

Browse files
committed
Fix links
1 parent 2123756 commit ccdb6ee

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.vuepress/configs/sidebar/en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export const sidebarEn: SidebarConfig = {
7474
'/book/configuration.md',
7575
'/book/environment.md',
7676
'/book/stdout_stderr_exit_codes.md',
77-
'/book/escaping.md',
77+
'/book/running_externals.md',
7878
'/book/3rdpartyprompts.md',
7979
'/book/directory_stack.md',
8080
'/book/line_editor.md',

book/configuration.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,7 @@ Check where Nushell is reading these config files from by calling `$nu.env-path`
1616

1717
_(You can think of the Nushell config loading sequence as executing two [REPL](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop) lines on startup: `source /path/to/env.nu` and `source /path/to/config.nu`. Therefore, using `env.nu` for environment and `config.nu` for other config is just a convention.)_
1818

19-
<<<<<<< HEAD
2019
When you launch Nushell without these files set up, Nushell will prompt you to download the [default config files](https://github.com/nushell/nushell/tree/main/crates/nu-utils/src/default_files).
21-
=======
22-
When you launch Nushell without these files set up, Nushell will prompt you to download the [`default env.nu`](https://github.com/nushell/nushell/blob/main/crates/nu-utils/src/sample_config/default_env.nu) and [`default config.nu`](https://github.com/nushell/nushell/blob/main/crates/nu-utils/src/sample_config/default_config.nu).
23-
>>>>>>> 5111c917 (Moved upgrade info to blog)
2420

2521
::: tip
2622
The default config files aren't required. If you prefer to start with an empty `env.nu` and `config.nu` then Nu applies identical defaults in internal Rust code. You can still browse the default files for default values of environment variables and a list of all configurable settings using the [`config`](#configurations-with-built-in-commands) commands:
@@ -167,7 +163,7 @@ alias nu-open = open
167163
alias open = ^open
168164
```
169165

170-
The `^` symbol _escapes_ the Nushell `open` command, which invokes the operating system's `open` command.
166+
The `^` symbol escapes the Nushell `open` command, which invokes the operating system's `open` command.
171167
For more about escape and `^` see the [chapter about escapes](./running_externals.md).
172168

173169
## PATH configuration

book/nu_as_a_shell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A big feature of any shell are [environment variables](environment.md).
1212
In Nushell, environment variables are scoped and can have any type supported by Nushell.
1313
This brings in some additional design considerations so please refer to the linked section for more details.
1414

15-
The other sections explain how to work with [stdout, stderr and exit codes](stdout_stderr_exit_codes.md), how to [escape a command call to the external command call](escaping.md), and how to [configure 3rd party prompts](3rdpartyprompts.md) to work with Nushell.
15+
The other sections explain how to work with [stdout, stderr and exit codes](stdout_stderr_exit_codes.md), how to [run an external command when there is a built-in with the same name](./running_externals.md), and how to [configure 3rd party prompts](3rdpartyprompts.md) to work with Nushell.
1616

1717
An interesting feature of Nushell is the [Directory Stack](directory_stack.md) which let you work in multiple directories simultaneously.
1818

book/running_externals.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ External command (typically `/usr/bin/ls`):
1414
^ls
1515
```
1616

17-
## Windows Note
17+
::: note
18+
On Windows, `ls` is a PowerShell _alias_ by default, so `^ls` will not find a matching system _command_.
19+
:::
20+
21+
## Additional Windows Notes
1822

1923
When running an external command on Windows,
2024
Nushell forwards some `CMD.EXE` internal commands to cmd instead of attempting to run external commands.

book/table_of_contents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
- [Metadata](metadata.md) - An explanation of Nu's metadata system
2626
- [Creating your own errors](creating_errors.md) - Creating your own error messages
2727
- [Directory Stack](directory_stack.md) - Working with multiple locations
28-
- [Escaping commands](escaping.md) - Escaping to native commands of the same name
28+
- [Running External (System) Commands](./running_externals.md) - Running external commands with a naming conflict
2929
- [Plugins](plugins.md) - Enhancing Nushell with more features using plugins
3030
- [Parallelism](parallelism.md) - Running your code in parallel
3131
- [Line editor](line_editor.md) - Nushell's line editor

0 commit comments

Comments
 (0)