> ## Documentation Index
> Fetch the complete documentation index at: https://namespace.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# nsc completion fish

Generate the autocompletion script for the fish shell.

`completion fish` generates a fish autocompletion script for `nsc`. Sourcing or installing
this script gives you tab-completion for `nsc` commands, subcommands, and flags in your
shell.

To load completions in your current shell session:

```bash theme={null}
nsc completion fish | source
```

To load completions for every new session, execute once:

```bash theme={null}
nsc completion fish > ~/.config/fish/completions/nsc.fish
```

You will need to start a new shell for this setup to take effect.

## Usage

```bash theme={null}
nsc completion fish [--no-descriptions]
```

### Example

```bash theme={null}
nsc completion fish | source
```

## Options

<h3 id="--no-descriptions">
  \--no-descriptions
</h3>

Disable the descriptions shown alongside completion suggestions. By default, `nsc`
includes a short description for each command, subcommand, and flag when completing;
pass this flag if you'd rather see just the bare completion candidates.
