î
Ó^ÝV¯  ã               @   s`   d  d l  m Z d  d l Z d  d l m Z d Z i d d 6d d 6Z Gd	 d
 „  d
 e ƒ Z d S)é    )Úabsolute_importN)Ú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                   s@   e  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.Ú
completionz,A helper command used for command completionc                s‰   t  t |  ƒ j | | Ž  |  j } | j d d d d d d d d d	 d
 ƒ| j d d d d d d d d d	 d ƒ|  j j d | ƒ d  S)Nz--bashz-bÚactionÚstore_constÚconstr   ÚdestÚshellÚhelpzEmit completion code for bashz--zshz-zr   zEmit completion code for zshr   )Úsuperr   Ú__init__Úcmd_optsÚ
add_optionÚparserÚinsert_option_group)ÚselfÚargsÚkwr   )Ú	__class__© ú6/tmp/pip-build-9m6vxulb/pip/pip/commands/completion.pyr   %   s    			zCompletionCommand.__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   ú
<listcomp><   s   	 z)CompletionCommand.run.<locals>.<listcomp>Ú Úscriptr   zERROR: You must pass %s
z or N)ÚCOMPLETION_SCRIPTSÚkeysÚsortedr   ÚgetÚprintÚBASE_COMPLETIONÚsysÚstderrÚwriteÚjoin)r   Úoptionsr   ÚshellsÚshell_optionsr   r   r   r   Úrun9   s    "	zCompletionCommand.run)Ú__name__Ú
__module__Ú__qualname__Ú__doc__ÚnameÚsummaryr   r+   r   r   )r   r   r       s
   r   )Ú
__future__r   r$   Úpip.basecommandr   r#   r   r   r   r   r   r   Ú<module>   s   	

