Shell Autocompletion

If you’re using bash or zsh you can set them up to have tab completionfor coala arguments and bear names.

Install argcomplete:

  1. $ pip install argcomplete

After this you have to either activate itgloballyor modify your configuration.

If you’re using bash, add the following to your .bashrc:

  1. eval "$(register-python-argcomplete coala)"

If you’re using zsh, add the following to your .zshrc:

  1. autoload bashcompinit
  2. bashcompinit
  3. eval "$(register-python-argcomplete coala)"