Skip to content

Commit 54c7c61

Browse files
committed
edit pass
1 parent a417c58 commit 54c7c61

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/core/tools/enable-tab-autocomplete.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
22
title: Enable tab completion
3-
description: This article teaches you how to enable tab completion for the .NET CLI for PowerShell, Bash, zsh, fish, and nushell.
3+
description: This article teaches you how to enable tab completion for the .NET CLI for PowerShell (pwsh), Bash, zsh, fish, and nushell.
44
author: adegeo
55
ms.author: adegeo
66
ms.topic: how-to
7-
ms.date: 01/14/2025
7+
ms.date: 11/14/2025
88
ai-usage: ai-assisted
99
---
1010

1111
# How to enable tab completion for the .NET CLI
1212

13-
**This article applies to:** ✔️ .NET Core 2.1 SDK and later versions
13+
**This article applies to:** ✔️ .NET 6 SDK and later versions
1414

15-
This article describes how to configure tab completion for five shells: PowerShell, Bash, zsh, fish, and nushell. For other shells, refer to their documentation on how to configure tab completion.
15+
This article describes how to configure tab completion for five shells: PowerShell (pwsh), Bash, zsh, fish, and nushell. For other shells, refer to their documentation on how to configure tab completion.
1616

1717
## Native shell completion scripts (.NET 10+)
1818

19-
Starting with .NET 10 Preview 3, the .NET CLI includes native shell completion scripts that are much faster than the dynamic completions available in earlier versions. Native completions generate shell-specific scripts that handle the static parts of the CLI grammar directly in the shell, providing a significant performance improvement.
19+
Starting with .NET 10, the .NET CLI includes native shell completion scripts that are much faster than the dynamic completions available in earlier versions. Native completions generate shell-specific scripts that handle the static parts of the CLI grammar directly in the shell, providing a significant performance improvement.
2020

2121
### Generate completion scripts
2222

@@ -34,7 +34,7 @@ The `[SHELL]` parameter accepts one of the following values:
3434
- `pwsh`
3535
- `zsh`
3636

37-
If you don't specify a shell, the command infers the correct shell from your environment. On Windows, it defaults to PowerShell (`pwsh`). On other systems, it checks the `SHELL` environment variable.
37+
If you don't specify a shell, the command infers the correct shell from your environment. On Windows, it defaults to PowerShell (`pwsh`). On other systems, it checks if the file name of the `SHELL` environment variable matches any of the previously specified shell values.
3838

3939
### Completion capabilities
4040

0 commit comments

Comments
 (0)