î
“Re. ã @ sP d d l Z d d l m Z d Z i d d 6d d 6Z Gd d „ d e ƒ Z d S)
é N)ÚCommandzJ
# pip %(shell)s completion start%(script)s# pip %(shell)s completion end
zÏ
_pip_completion()
{
COMPREPLY=( $( COMP_WORDS="${COMP_WORDS[*]}" \
COMP_CWORD=$COMP_CWORD \
PIP_AUTO_COMPLETE=1 $1 ) )
}
complete -o default -F _pip_completion pip
Úbashzñ
function _pip_completion {
local words cword
read -Ac words
read -cn cword
reply=( $( COMP_WORDS="$words[*]" \
COMP_CWORD=$(( cword-1 )) \
PIP_AUTO_COMPLETE=1 $words[1] ) )
}
compctl -K _pip_completion pip
Úzshc sF e Z d Z d Z d Z d Z d Z ‡ f d d † Z d d „ Z ‡ S) ÚCompletionCommandz3A helper command to be used for command completion.Ú
completionz2A helper command to be used for command completionTc ss t t | ƒ j | | Ž | j j d d d d d d d d d d
ƒ| j j d d d d d d
d d d d ƒd S)Nz--bashz-bÚactionÚstore_constÚconstr ÚdestÚshellÚhelpzEmit completion code for bashz--zshz-zr zEmit completion code for zsh)Úsuperr Ú__init__ÚparserÚ
add_option)ÚselfÚargsÚkw)Ú __class__© ú2/tmp/pip-ztkk0jow-build/pip/commands/completion.pyr $ s zCompletionCommand.__init__c C sŒ t j ƒ } d d „ t | ƒ Dƒ } | j | k rk t j | j d ƒ } t t i | d 6| j d 6ƒ n t j j d d j
| ƒ ƒ d S) z-Prints the completion code of the given shellc S s g | ] } d | ‘ q S)z--r )Ú.0r r r r ú