Skip to content

completion

Generate the autocompletion script for pogo for the specified shell. See each sub-command’s help for details on how to use the generated script.

Terminal window
pogo completion

Generate the autocompletion script for the bash shell.

This script depends on the ‘bash-completion’ package. If it is not installed already, you can install it via your OS’s package manager.

To load completions in your current shell session:

source <(pogo completion bash)

To load completions for every new session, execute once:

pogo completion bash > /etc/bash_completion.d/pogo
pogo completion bash > $(brew --prefix)/etc/bash_completion.d/pogo

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

Terminal window
pogo completion bash
  • --no-descriptions: disable completion descriptions

Generate the autocompletion script for the fish shell.

To load completions in your current shell session:

pogo completion fish | source

To load completions for every new session, execute once:

pogo completion fish > ~/.config/fish/completions/pogo.fish

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

Terminal window
pogo completion fish
  • --no-descriptions: disable completion descriptions

Generate the autocompletion script for powershell.

To load completions in your current shell session:

pogo completion powershell | Out-String | Invoke-Expression

To load completions for every new session, add the output of the above command to your powershell profile.

Terminal window
pogo completion powershell
  • --no-descriptions: disable completion descriptions

Generate the autocompletion script for the zsh shell.

If shell completion is not already enabled in your environment you will need to enable it. You can execute the following once:

echo "autoload -U compinit; compinit" >> ~/.zshrc

To load completions in your current shell session:

source <(pogo completion zsh)

To load completions for every new session, execute once:

pogo completion zsh > "${fpath[1]}/_pogo"
pogo completion zsh > $(brew --prefix)/share/zsh/site-functions/_pogo

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

Terminal window
pogo completion zsh
  • --no-descriptions: disable completion descriptions