completion
$ copilot completion [shell] [flags]
What does it do?
copilot completion
prints shell completion code for bash, zsh or fish. The code must be evaluated to provide interactive completion of commands.
See the help menu for instructions on how to setup auto-completion for your respective shell.
What are the flags?
-h, --help help for completion
Examples
Install zsh completion.
$ source <(copilot completion zsh)
$ copilot completion zsh > "${fpath[1]}/_copilot" # to autoload on startup
$ brew install bash-completion # if running 3.2
$ brew install bash-completion@2 # if running Bash 4.1+
$ copilot completion bash > /usr/local/etc/bash_completion.d
$ source <(copilot completion bash)
$ copilot completion bash > copilot.sh
$ sudo mv copilot.sh /etc/bash_completion.d/copilot
$ source <(copilot completion fish)
$ copilot completion fish > ~/.config/fish/completions/copilot.fish