stash-cli 0.8.0

A local store for pipeline output and ad hoc file snapshots
Documentation
# Zsh Completion

> [!IMPORTANT]
> If you installed `stash` with Homebrew, zsh completion is
> already enabled!

For a manual install, generate the completion file:

```bash
mkdir -p ~/.zsh/completions
stash-completion zsh > ~/.zsh/completions/_stash
```

Then add this to your `.zshrc` before `compinit`:

```zsh
fpath=(~/.zsh/completions $fpath)
autoload -Uz compinit
compinit
```

> [!NOTE]
> Check [scripts]../scripts/ for fzf and other integrations.