Skip to content
Snippets Groups Projects
Commit 93119f0b authored by nimrod's avatar nimrod
Browse files

Add basic pre-commit bash completion.

parent 56cf4da7
No related branches found
No related tags found
No related merge requests found
Pipeline #3195 passed
# vim: ft=bash
_pre_commit () {
local cur prev words cword opts
_init_completion || return
opts='-h --help -V --version'
commands='autoupdate clean gc init-templatedir install install-hooks migrate-config run sample-config try-repo uninstall validate-config validate-manifest help hook-impl'
if [[ $cur == -* ]]
then
COMPREPLY=($(compgen -W "$opts" -- "$cur"))
else
COMPREPLY=($(compgen -W "$commands" -- "$cur"))
fi
}
complete -F _pre_commit pre-commit
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment