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
:
- $ 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
:
- eval "$(register-python-argcomplete coala)"
If you’re using zsh
, add the following to your .zshrc
:
- autoload bashcompinit
- bashcompinit
- eval "$(register-python-argcomplete coala)"