Skip to content

nschema completion

Output a shell tab-completion script for nschema. NSchema is its own completion provider, so no external tool (such as dotnet-suggest) is required.

Terminal window
nschema completion <shell>

Supported shells: bash, zsh, fish, pwsh.

Source the script in your current shell, or install it permanently:

import { Tabs, TabItem } from “@astrojs/starlight/components”;

```sh # current shell source <(nschema completion bash) # install permanently nschema completion bash > /etc/bash_completion.d/nschema ``` ```sh # current shell source <(nschema completion zsh) # install permanently nschema completion zsh > "${fpath[1]}/_nschema" ``` ```sh # current shell nschema completion fish | source # install permanently nschema completion fish > ~/.config/fish/completions/nschema.fish ``` ```powershell # current session nschema completion pwsh | Out-String | Invoke-Expression # install permanently: add that line to your $PROFILE ```

Nothing — it only writes a script to stdout.