Skip to content
Henry Catalini Smith edited this page Oct 31, 2021 · 2 revisions

Summary

Output a completion function for shell integration

Synopsis

ppl completion <shell>

Description

Output a shell autocomplete function to enable automatic completion of commands

The following shells are supported:

  • bash
  • zsh

Examples

$ ppl completion bash
_ppl()
{
  ....
}
complete -F _ppl ppl

See Also

  1. bash integration guide
  2. zsh integration guide
Clone this wiki locally