î
É X.  ã               @   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ÚhelpzEmit completion code for bashz--zshz-zr   zEmit completion code for zsh)Úsuperr   Ú__init__ÚparserÚ
add_option)ÚselfÚargsÚkw)Ú	__class__© úB/home/ubuntu/projects/ifolica/build/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>6   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   Úrun3   s    "zCompletionCommand.run)	Ú__name__Ú
__module__Ú__qualname__Ú__doc__ÚnameÚsummaryÚhiddenr   r(   r   r   )r   r   r      s   r   )r!   Úpip.basecommandr   r    r   r   r   r   r   r   Ú<module>   s   	

