*git-loom* provides shell completions for tab-completion of commands and options.
Add the following to your PowerShell profile (`$PROFILE`):
```powershell
To find your profile path, run `echo $PROFILE` in PowerShell.
[Clink](https://chrisant996.github.io/clink/) adds completion support to `cmd.exe`. Create a file at `%LocalAppData%\clink\git-loom.lua` with:
```lua
load(io.popen('git loom completions clink'):read("*a"))()
```