Add repomanage completion for review.
This commit is contained in:
parent
bfb55007c8
commit
33b25cc049
24
to_review/repomanage
Normal file
24
to_review/repomanage
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
|
||||||
|
# ex: ts=8 sw=8 noet filetype=sh
|
||||||
|
#
|
||||||
|
# bash completion for repomanage
|
||||||
|
|
||||||
|
have repomanage &&
|
||||||
|
_repomanage()
|
||||||
|
{
|
||||||
|
local cur prev
|
||||||
|
|
||||||
|
COMPREPLY=()
|
||||||
|
cur=`_get_cword`
|
||||||
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
||||||
|
|
||||||
|
[[ "$prev" == -@(h|-help|k|-keep) ]] && return 0
|
||||||
|
|
||||||
|
if [[ "$cur" == -* ]] ; then
|
||||||
|
COMPREPLY=( $( compgen -W '-o --old -n --new -s --space -k \
|
||||||
|
--keep -c --nocheck -h --help' -- $cur ) )
|
||||||
|
else
|
||||||
|
_filedir -d
|
||||||
|
fi
|
||||||
|
} &&
|
||||||
|
complete -F _repomanage $filenames repomanage
|
Loading…
x
Reference in New Issue
Block a user